/*
Theme Name: La Promesa de Alaska
Theme URI: https://lapromesadealaska.com
Author: Tu Nombre
Description: Tema personalizado para el viaje de Buenos Aires a Alaska.
Version: 1.0
*/

/* Variables Globales extraídas de tu HTML */
:root {
  --primary-color: #d9534f; /* Rojo aventura */
  --secondary-color: #2c3e50; /* Azul oscuro ruta */
  --accent-color: #f0ad4e; /* Amarillo señalización */
  --light-bg: #ecf0f1;
}

body {
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
  background-color: #ffffff;
}

h1,
h2,
h3,
h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

/* Agrega aquí el resto del CSS que estaba dentro de las etiquetas <style> de tus HTML.
   Copia todo lo que está entre <style> y </style> de index.html y pégalo aquí abajo. 
*/

:root {
  --primary-color: #d9534f;
  /* Rojo aventura */
  --secondary-color: #2c3e50;
  /* Azul oscuro ruta */
  --accent-color: #f0ad4e;
  /* Amarillo señalización */
  --light-bg: #ecf0f1;
}

body {
  font-family: "Open Sans", sans-serif;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
    url("img/toyota-hilux-buenos-aires-alaska.jpg");
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero-title {
  font-size: 3.5rem;
  text-transform: uppercase;
  animation: fadeInDown 1.5s ease;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.badge-clarification {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  backdrop-filter: blur(5px);
  margin-top: 20px;
  display: inline-block;
}

/* --- CORRECCIÓN ENLACES CATEGORÍAS --- */
.badge a {
  color: white !important;
  text-decoration: none !important;
}
.badge a:hover {
  color: #f0f0f0 !important;
  text-decoration: underline !important;
}
.badge a:visited {
  color: #f0f0f0 !important;
  text-decoration: underline !important;
}

/* Secciones */
.section-padding {
  padding: 80px 0;
}

.bg-dark-custom {
  background-color: var(--secondary-color);
  color: white;
}

/* Cards de Ruta */
.route-card {
  border: none;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  overflow: hidden;
}

.route-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.route-card img {
  height: 200px;
  object-fit: cover;
}

/* Hilux Section */
.hilux-feature {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  border-left: 5px solid var(--primary-color);
}

/* FAQ Accordion */
.accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: white;
}

/* Contacto Flotante */
.contact-bar {
  background-color: var(--secondary-color);
  color: white;
  padding: 40px 0;
}

.social-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 10px;
  transition: all 0.3s ease;
  color: white;
  text-decoration: none;
}

.btn-whatsapp {
  background-color: #25d366;
}

.btn-instagram {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}

.btn-facebook {
  background-color: #1877f2;
}

.btn-email {
  background-color: #ea4335;
}

.social-btn:hover {
  transform: scale(1.1) rotate(10deg);
  color: white;
}

/* Animaciones */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- CORRECCIONES WORDPRESS AJUSTADAS --- */

/* 1. Ajuste de altura exacto */
/* Probamos con 60px que es el estándar de Bootstrap. 
   Si sigues viendo una línea fina, baja este número a 56px. * /
body {
  padding-top: 60px;
}

/* 2. Arreglo para la Barra de Administración (la barra negra de usuario) */
/* Solo bajamos el menú si la barra de admin está visible */
body.admin-bar .navbar.fixed-top {
  top: 32px;
}

/* Ajuste para móviles (la barra de admin es más alta en celular) */
@media screen and (max-width: 782px) {
  body.admin-bar .navbar.fixed-top {
    top: 46px;
  }
}

/* --- ESPACIADO DE LA GUÍA --- */

.content-section {
  padding-top: 30px; /* Aire arriba del título */
  padding-bottom: 20px; /* Aire debajo del contenido */
}

/* --- ESTILOS ESPECÍFICOS DE LA GUÍA --- */

/* 1. Caja destacada (Aclaración días) */
.highlight-box {
  background-color: white;
  border-left: 5px solid var(--primary-color);
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

/* 2. Tarjetas de Datos (Presupuesto) */
.data-card {
  background: var(--secondary-color);
  color: white;
  padding: 20px;
  border-radius: 10px;
  height: 100%;
  text-align: center;
  transition: transform 0.3s;
}
.data-card:hover {
  transform: translateY(-5px);
}
.data-card i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

/* 3. Listas de Checklist (Vehículo) */
.check-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.check-list li i {
  color: green;
  margin-right: 10px;
}

/* 4. Línea de Tiempo Vertical (Ruta) */
.step {
  padding-left: 20px;
  border-left: 3px solid var(--primary-color);
  margin-bottom: 30px;
  position: relative;
}
.step-title {
  color: var(--primary-color);
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

/* 5. Alertas personalizadas */
.warning-alert {
  background-color: #fff3cd;
  border: 1px solid #ffecb5;
  color: #664d03;
  padding: 15px;
  border-radius: 5px;
}

/* --- MEJORAS DE LECTURA BLOG --- */

/* 1. Más aire en el texto general */
.blog-content p {
  line-height: 1.8; /* Más espacio entre renglones */
  margin-bottom: 25px; /* Más espacio entre párrafos */
  font-size: 1.1rem; /* Letra un pelín más grande para leer cómodo */
  color: #333;
}

/* 2. Jerarquía de Títulos (H2 y H3) */
.blog-content h2 {
  margin-top: 50px; /* Mucho aire antes de una sección nueva */
  margin-bottom: 25px; /* Aire después del título */
  font-weight: 800;
  color: var(--primary-color); /* Rojo marca */
}

.blog-content h3 {
  margin-top: 35px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #555;
}

/* 3. Fotos dentro del texto (para lo que vamos a agregar ahora) */
.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0; /* Espacio arriba y abajo de las fotos */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
