/* ==========================================================================
   PETROLHEAD CHILE - ESTILOS PRINCIPALES Y FONDO DE PÁGINA
   ========================================================================== */

/* Configuración General del Sitio */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: #ffffff;
  background-color: #0b0c10;
}

/* Configuración de la Imagen de Fondo de Pantalla Completa */
body {
  background-image: url('images.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  min-height: 100vh;
  width: 100%;
}

/* Capa de superposición opcional para mejorar la legibilidad del texto */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 12, 16, 0.65);
  z-index: -1;
}

/* Clases de Utilidad y Botones */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn-whatsapp {
  background-color: #25d366;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn-whatsapp:hover {
  background-color: #1ebc57;
}

.btn-call {
  background-color: #000000;
  color: #ffffff;
  border: 1px solid #333333;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: border-color 0.3s ease;
}

.btn-call:hover {
  border-color: #e50914;
}
