/* ===== VARIABLES GLOBALES DE ELEMENTOR ===== */
:root {
    --e-global-color-primary: #f4f4ef;
    --e-global-color-secondary: #7d9612;
    --e-global-color-text: #3f5701;
    --e-global-color-accent: #E8EDD3;
    --e-global-color-ae456b3: #3F3F3F;
    
    --e-global-typography-primary-font-family: "Montserrat";
    --e-global-typography-primary-font-size: 62px;
    --e-global-typography-primary-font-weight: 800;
    --e-global-typography-primary-text-transform: capitalize;
    --e-global-typography-primary-font-style: normal;
    --e-global-typography-primary-text-decoration: none;
    --e-global-typography-primary-line-height: 72px;
    
    --e-global-typography-secondary-font-family: "Montserrat";
    --e-global-typography-secondary-font-size: 40px;
    --e-global-typography-secondary-font-weight: 700;
    --e-global-typography-secondary-text-transform: capitalize;
    --e-global-typography-secondary-font-style: normal;
    --e-global-typography-secondary-text-decoration: none;
    --e-global-typography-secondary-line-height: 46px;
    
    --e-global-typography-text-font-family: "Montserrat";
    --e-global-typography-text-font-size: 16px;
    --e-global-typography-text-font-weight: 400;
    --e-global-typography-text-text-transform: none;
    --e-global-typography-text-font-style: normal;
    --e-global-typography-text-text-decoration: none;
    --e-global-typography-text-line-height: 22px;
    
    --e-global-typography-accent-font-family: "Montserrat";
    --e-global-typography-accent-font-size: 16px;
    --e-global-typography-accent-font-weight: 600;
    --e-global-typography-accent-text-transform: capitalize;
    --e-global-typography-accent-font-style: normal;
    --e-global-typography-accent-text-decoration: none;
    --e-global-typography-accent-line-height: 22px;
    
    --page-title-display: none;
}

/* ===== RESET Y ESTILOS BASE ===== */
*, *:after, *:before {
    box-sizing: border-box;
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--e-global-typography-text-font-family), -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: var(--e-global-typography-text-font-size);
    font-weight: var(--e-global-typography-text-font-weight);
    line-height: var(--e-global-typography-text-line-height);
    color: var(--e-global-color-text);
    background-color: var(--e-global-color-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 0;
}

/* ===== TIPOGRAFÍA ===== */
h1, .h1 {
    font-family: var(--e-global-typography-primary-font-family);
    font-size: var(--e-global-typography-primary-font-size);
    font-weight: var(--e-global-typography-primary-font-weight);
    text-transform: var(--e-global-typography-primary-text-transform);
    line-height: var(--e-global-typography-primary-line-height);
    color: var(--e-global-color-text);
    margin: 0 0 20px 0;
}

h2, .h2 {
    font-family: var(--e-global-typography-secondary-font-family);
    font-size: var(--e-global-typography-secondary-font-size);
    font-weight: var(--e-global-typography-secondary-font-weight);
    text-transform: var(--e-global-typography-secondary-text-transform);
    line-height: var(--e-global-typography-secondary-line-height);
    color: var(--e-global-color-secondary);
    margin: 0 0 15px 0;
}

h3, .h3 {
    font-family: var(--e-global-typography-accent-font-family);
    font-size: var(--e-global-typography-accent-font-size);
    font-weight: var(--e-global-typography-accent-font-weight);
    text-transform: var(--e-global-typography-accent-text-transform);
    line-height: var(--e-global-typography-accent-line-height);
    color: var(--e-global-color-text);
    margin: 0 0 15px 0;
}

p {
    margin: 0 0 20px 0;
}

/* ===== OPTIMIZACIÓN DEL LOGO ===== */

.logo {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    max-width: 180px !important;
    width: auto !important;
    height: 100% !important;
    
    /* CERO absoluto en todos los márgenes y paddings */
    margin: 0 !important;
    padding: 0 !important;
    
    /* Eliminar cualquier espacio generado por el navegador */
    margin-left: -15px !important; /* Compensa el padding del container */
}

/* Estilos para la imagen del logo */
.logo-img {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 60px !important;
    object-fit: contain !important;
    display: block !important;
    
    /* CERO absoluto */
    margin: 0 !important;
    padding: 0 !important;
}

/* Para pantallas tablet */
@media (max-width: 1024px) {
    .logo {
        max-width: 200px;
    }
    .logo-img {
        max-height: 50px;
    }
}

/* Para pantallas móviles */
@media (max-width: 768px) {
    .logo {
        max-width: 160px;
        margin-bottom: 10px;
    }
    .logo-img {
        max-height: 40px;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 130px;
    }
    .logo-img {
        max-height: 32px;
    }
}
/* ===== SECCIÓN DE CARACTERÍSTICAS ===== */
.caracteristicas {
    background-color: var(--e-global-color-text);
    padding: 30px 0;
}

.caracteristicas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: center;
}

.caracteristica-item {
    display: flex;
    align-items: center;
    justify-content: center; /* Centra icono + texto horizontalmente */
    gap: 10px;
    color: var(--e-global-color-primary);
}

.caracteristica-icono {
    flex-shrink: 0;
    color: var(--e-global-color-primary);
    opacity: 0.9;
}

.caracteristica-icono svg {
    width: 16px;
    height: 16px;
}

.caracteristica-texto h3 {
    color: var(--e-global-color-primary);
    font-family: var(--e-global-typography-accent-font-family);
    font-size: 10px;
    font-weight: 600;
    margin: 0 0 4px 0;
    text-transform: none;
    letter-spacing: 0.5px;
}

/* ===== PÁGINA ABOUT US ===== */

/* ===== PÁGINA SERVICES ===== */

/* Hero Section - Services */
.services-hero {
    background-image: url('../../imgs/services/services-header.jfif');
    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg, 
        rgba(118, 127, 47, 0.15) 0%, 
        rgba(63, 87, 1, 0.35) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-hero-overlay .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.services-hero h1 {
    color: #ffffff !important;
    font-size: 72px;
    font-weight: 800;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    margin: 0;
    text-transform: none !important;
    letter-spacing: 0.5px;
}

/* Sección "What We Can Do For You" */
.services-intro {
    padding: 60px 0 30px 0;
    background-color: var(--e-global-color-primary);
    text-align: center;
}

.services-intro h2 {
    color: var(--e-global-color-secondary);
    font-size: 38px;
    font-weight: 700;
    margin: 0;
}

/* Tabs - Servicios */
.services-tabs {
    padding: 30px 0 80px 0;
    background-color: var(--e-global-color-primary);
}

.services-tabs-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.services-tab-btn {
    background: transparent;
    border: 2px solid var(--e-global-color-secondary);
    color: var(--e-global-color-secondary);
    padding: 12px 35px;
    font-family: var(--e-global-typography-accent-font-family);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.services-tab-btn:hover {
    background: var(--e-global-color-secondary);
    color: var(--e-global-color-primary);
}

.services-tab-btn.active {
    background: var(--e-global-color-secondary);
    color: var(--e-global-color-primary);
}

/* Contenido de Tabs */
.services-tab-panel {
    display: none;
}

.services-tab-panel.active {
    display: block;
}

.services-tab-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.services-tab-texto h3 {
    color: var(--e-global-color-secondary);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.4;
}

.services-tab-lista {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-tab-lista li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    color: var(--e-global-color-ae456b3);
    font-size: 16px;
    line-height: 1.6;
}

.services-tab-lista li:last-child {
    margin-bottom: 0;
}

.check-icon {
    flex-shrink: 0;
    margin-top: 2px;
    stroke: var(--e-global-color-secondary);
}

.services-tab-lista li strong {
    color: var(--e-global-color-text);
}

.services-tab-imagen img {
    width: 100%;
    max-width: 400px; /* Mismo ancho máximo que How We Do It */
    height: 350px; /* Altura fija */
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto; /* Centra la imagen si es más pequeña */
}

/* Sección "Got Some Questions?" */
.services-faq {
    padding: 80px 0;
    background-color: var(--e-global-color-accent);
    text-align: center;
}

.services-faq h2 {
    color: var(--e-global-color-secondary);
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 50px;
}

.services-faq-item {
    max-width: 850px;
    margin: 0 auto 30px;
    text-align: left;
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.services-faq-item:last-child {
    margin-bottom: 0;
}

.services-faq-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.faq-icon {
    flex-shrink: 0;
    stroke: var(--e-global-color-secondary);
}

.services-faq-header h3 {
    color: var(--e-global-color-text);
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.services-faq-item p {
    color: var(--e-global-color-ae456b3);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    padding-left: 43px;
}

/* ===== CAROUSEL DE SERVICIOS ===== */
/* ===== CAROUSEL DE SERVICIOS ===== */
.services-carousel {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: auto;
    overflow: hidden;
border-radius: 0;
    box-shadow: none;
    margin: 0 auto;
    background: transparent;
}
.services-carousel-track {
    width: 100%;
    height: auto;
    position: relative;
}

.services-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 0;
}

.services-carousel-slide.active {
    opacity: 1;
    z-index: 1;
    position: relative; /* El slide activo ocupa su espacio */
}

.services-carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
}
/* Botones de navegación */
.services-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(63, 87, 1, 0.7);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-carousel-btn:hover {
    background: var(--e-global-color-secondary);
    transform: translateY(-50%) scale(1.1);
}

.services-carousel-btn.prev {
    left: 10px;
}

.services-carousel-btn.next {
    right: 10px;
}

/* Dots */
.services-carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.services-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.services-carousel-dot.active {
    background: var(--e-global-color-secondary);
    transform: scale(1.2);
}

.services-carousel-dot:hover {
    background: var(--e-global-color-secondary);
}

/* ===== NOTIFICACIÓN MODAL ===== */
.notification-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.notification-modal.show {
    display: flex;
}

.notification-content {
    background: var(--e-global-color-primary);
    padding: 50px 40px;
    border-radius: 20px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: scaleIn 0.4s ease;
}

.notification-icon {
    margin-bottom: 20px;
}

.notification-icon svg {
    stroke: var(--e-global-color-secondary);
}

.notification-content h3 {
    color: var(--e-global-color-secondary);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.notification-content p {
    color: var(--e-global-color-ae456b3);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.notification-btn {
    background-color: var(--e-global-color-secondary);
    color: var(--e-global-color-primary);
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notification-btn:hover {
    background-color: var(--e-global-color-text);
    transform: translateY(-2px);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* ===== ADMIN ===== */
.admin-hero {
    background-color: var(--e-global-color-accent);
    padding: 60px 0;
    text-align: center;
}

.admin-hero h1 {
    color: var(--e-global-color-secondary);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.admin-subtitulo {
    color: var(--e-global-color-ae456b3);
    font-size: 18px;
}

.admin-dashboard {
    padding: 40px 0 80px;
    background-color: var(--e-global-color-primary);
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.admin-stat-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.admin-stat-numero {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: var(--e-global-color-secondary);
}

.admin-stat-etiqueta {
    font-size: 16px;
    color: var(--e-global-color-ae456b3);
}

.admin-table-wrapper {
    background: #ffffff;
    border-radius: 16px;
    overflow: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

.admin-table th {
    background: var(--e-global-color-secondary);
    color: var(--e-global-color-primary);
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: var(--e-global-color-ae456b3);
}

.admin-table tr:hover td {
    background-color: #fafafa;
}

.admin-mensaje {
    max-width: 200px;
}

.admin-status {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.status-answered {
    background: #d1fae5;
    color: #065f46;
}
.admin-btn {
    padding: 6px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.admin-btn-atender {
    background: var(--e-global-color-secondary);
    color: var(--e-global-color-primary);
}

.admin-btn-atender:hover {
    background: var(--e-global-color-text);
}

.admin-btn-atendido {
    background: #d1fae5;
    color: #065f46;
    cursor: default;
}

/* Responsive Admin */
@media (max-width: 768px) {
    .admin-stats {
        grid-template-columns: 1fr;
    }
    
    .admin-hero h1 {
        font-size: 32px;
    }
    
    .admin-table-wrapper {
        overflow-x: auto;
    }
}

/* ===== RESPONSIVE CAROUSEL ===== */
@media (max-width: 1024px) {
    .services-carousel {
        max-width: 100%;
        height: 450px; /* Aumentado de 300px a 350px */
    }
}

@media (max-width: 768px) {
    .services-carousel {
        height: 400px; /* Aumentado de 250px a 300px */
    }
    
    .services-carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .services-carousel {
        height: 350px; /* Aumentado de 200px a 250px */
    }
    
    .services-carousel-btn {
        width: 26px;
        height: 26px;
        font-size: 14px;
    }
    
    .services-carousel-dot {
        width: 8px;
        height: 8px;
    }
}

/* Sección "Your next project solved in a few clicks" */
.services-cta {
    padding: 80px 0;
    background-color: var(--e-global-color-primary);
    text-align: center;
}

.services-cta h2 {
    color: var(--e-global-color-secondary);
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
}

.services-cta-boton {
    background-color: var(--e-global-color-secondary);
    color: var(--e-global-color-primary);
    padding: 16px 45px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 0;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.services-cta-boton:hover {
    background-color: var(--e-global-color-text);
    color: var(--e-global-color-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(63, 87, 1, 0.3);
}

/* ===== RESPONSIVE SERVICES ===== */
@media (max-width: 1024px) {
    .services-hero h1 {
        font-size: 56px;
    }
    
    .services-tab-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-tab-imagen {
        order: -1;
    }
    
    .services-tab-imagen img {
        max-height: 350px;
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    .services-hero {
        min-height: 40vh;
    }
    
    .services-hero h1 {
        font-size: 42px;
    }
    
    .services-intro h2 {
        font-size: 28px;
    }
    
    .services-tabs {
        padding: 20px 0 50px 0;
    }
    
    .services-tabs-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .services-tab-btn {
        width: 100%;
        max-width: 300px;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .services-tab-texto h3 {
        font-size: 22px;
    }
    
    .services-tab-lista li {
        font-size: 14px;
    }
    
    .services-tab-imagen img {
        max-height: 250px;
    }
    
    .services-faq {
        padding: 50px 0;
    }
    
    .services-faq h2 {
        font-size: 28px;
    }
    
    .services-faq-item {
        padding: 20px;
    }
    
    .services-faq-header h3 {
        font-size: 16px;
    }
    
    .services-faq-item p {
        font-size: 14px;
        padding-left: 0;
    }
    
    .services-faq-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .services-cta {
        padding: 50px 0;
    }
    
    .services-cta h2 {
        font-size: 28px;
    }
    
    .services-cta-boton {
        padding: 14px 35px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 32px;
    }
    
    .services-intro h2 {
        font-size: 24px;
    }
    
    .services-tab-texto h3 {
        font-size: 20px;
    }
    
    .services-tab-lista li {
        font-size: 13px;
    }
    
    .services-tab-imagen img {
        max-height: 200px;
    }
    
    .services-cta h2 {
        font-size: 24px;
    }
}

/* Hero Section - About Us */
.about-hero {
    background-image: url('../../imgs/about-us/loading-and-unloading.jpeg');
    /* Cambiamos a centrado superior para alejar el plano y que no se corte la caja o el camión */
    background-position: center 35%; 
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 50vh; /* Ajustado para reducir el zoom por proporción de aspecto */
    display: flex;
    align-items: center;
    position: relative;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* EFECTO VERDE MÁS SUAVE Y TRANSPARENTE: Reducidas las opacidades significativamente (0.15 a 0.35) */
    background: linear-gradient(
        180deg, 
        rgba(118, 127, 47, 0.15) 0%, 
        rgba(63, 87, 1, 0.35) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-overlay .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.about-hero h1 {
    color: #ffffff !important;
    font-size: 72px;
    font-weight: 800;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); /* Sombra para garantizar legibilidad con el fondo más claro */
    margin: 0;
    /* DESACTIVAR MAYÚSCULAS FORZADAS: Respeta el texto exacto del HTML sin alterar capitales */
    text-transform: none !important; 
    letter-spacing: 0.5px;
}

/* Sección "Driven by Hard Work" - Título centrado */
.about-story {
    padding: 80px 0;
    background-color: var(--e-global-color-primary);
}

.about-story-titulo {
    text-align: center;
    color: var(--e-global-color-secondary);
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 50px;
    line-height: 1.2;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 50px;
    align-items: stretch;
}

.about-story-texto {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-story-texto p {
    color: var(--e-global-color-ae456b3);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-story-texto p:last-child {
    margin-bottom: 0;
}

.about-story-imagen {
    display: flex;
    align-items: center;
    height: 100%;
}

.about-story-imagen img {
    width: 100%;
    height: 100%;
    max-height: 450px; /* Ajusta esta altura si quieres que sea un poco más alta o baja en tu sección */
    object-fit: cover; /* Vuelve a llenar todo el ancho disponible */
    object-position: center 25%; /* ¡CLAVE! Enfoca el corte un 12% desde arriba, mostrando la cabeza completa */
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: block;
}

/* Sección "The EasyHaul Difference" */
.about-difference {
    padding: 80px 0;
    background-color: var(--e-global-color-accent);
    text-align: center;
}

.about-difference h2 {
    color: var(--e-global-color-secondary);
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-difference-subtitulo {
    color: var(--e-global-color-ae456b3);
    font-size: 18px;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.about-difference-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.about-difference-item {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-difference-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.1);
}

.about-difference-icono {
    margin-bottom: 20px;
    color: var(--e-global-color-secondary);
}

.about-difference-icono svg {
    width: 50px;
    height: 50px;
    stroke: var(--e-global-color-secondary);
}

.about-difference-item h3 {
    color: var(--e-global-color-text);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    text-transform: uppercase;
}

.about-difference-item p {
    color: var(--e-global-color-ae456b3);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Sección "Our Commitment to You" */
.about-commitment {
    padding: 80px 0;
    background-color: var(--e-global-color-primary);
    text-align: center;
}

.about-commitment h2 {
    color: var(--e-global-color-secondary);
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
}

.about-commitment p {
    color: var(--e-global-color-ae456b3);
    font-size: 17px;
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto 35px;
}

.about-boton {
    background-color: var(--e-global-color-secondary);
    color: var(--e-global-color-primary);
    padding: 16px 45px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 0;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.about-boton:hover {
    background-color: var(--e-global-color-text);
    color: var(--e-global-color-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(63, 87, 1, 0.3);
}

/* ===== RESPONSIVE ABOUT US ===== */
@media (max-width: 1024px) {
    .about-hero h1 {
        font-size: 56px;
    }
    
    .about-story-titulo {
        font-size: 32px;
    }
    
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-story-texto {
        order: 2;
    }
    
    .about-story-imagen {
        order: 1;
        max-height: 300px;
    }
    
    .about-story-imagen img {
        max-height: 300px;
        width: 100%;
    }
    
    .about-difference h2 {
        font-size: 32px;
    }
    
    .about-difference-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 40vh;
    }
    
    .about-hero h1 {
        font-size: 42px;
    }
    
    .about-story {
        padding: 50px 0;
    }
    
    .about-story-titulo {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .about-story-texto p {
        font-size: 15px;
    }
    
    .about-story-imagen {
        max-height: 220px;
    }
    
    .about-story-imagen img {
        max-height: 220px;
    }
    
    .about-difference {
        padding: 50px 0;
    }
    
    .about-difference h2 {
        font-size: 28px;
    }
    
    .about-difference-subtitulo {
        font-size: 16px;
    }
    
    .about-difference-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 25px;
    }
    
    .about-difference-item {
        padding: 30px 20px;
    }
    
    .about-difference-item h3 {
        font-size: 18px;
    }
    
    .about-commitment {
        padding: 50px 0;
    }
    
    .about-commitment h2 {
        font-size: 28px;
    }
    
    .about-commitment p {
        font-size: 15px;
    }
    
    .about-boton {
        padding: 14px 35px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 32px;
    }
    
    .about-story-titulo {
        font-size: 24px;
    }
    
    .about-story-imagen {
        max-height: 180px;
    }
    
    .about-story-imagen img {
        max-height: 180px;
    }
    
    .about-difference h2 {
        font-size: 24px;
    }
    
    .about-commitment h2 {
        font-size: 24px;
    }
    
    .about-difference-item {
        padding: 25px 15px;
    }
}

/* ===== SECCIÓN "BEYOND JUST MOVING BOXES" ===== */
.servicios-destacados {
    padding: 80px 0;
    background-color: var(--e-global-color-primary);
}

.servicios-titulo {
    text-align: center;
    margin-bottom: 40px;
    color: var(--e-global-color-secondary);
    font-size: 36px;
    font-weight: 700;
}

.servicios-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr; 
    gap: 50px;
    align-items: center;
}

.servicios-imagen {
    width: 100%;
    max-width: 582px;
}

.servicios-imagen img {
    width: 90%; 
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.servicios-contenido p {
    color: var(--e-global-color-ae456b3);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 16px;
}

.servicios-contenido p:last-child {
    margin-bottom: 0; /* Remueve el margen del último párrafo */
}

/* ===== NUEVA CONFIGURACIÓN PARA TARJETAS DE SERVICIOS ===== */
.servicios-lista {
    padding: 80px 0;
    background-color: var(--e-global-color-primary); /* Fondo claro como la imagen */
    text-align: center;
}

.servicios-lista h2 {
    color: var(--e-global-color-secondary);
    margin-bottom: 50px;
    font-size: 36px;
    font-weight: 700;
}

.servicios-lista-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px; /* Un poco más amplio para el diseño de tarjetas */
    margin: 0 auto 50px;
}

/* Tarjeta individual */
.servicio-card {
    height: 420px; /* Altura vertical para emular la imagen */
    border-radius: 20px; /* Esquinas redondeadas pronunciadas */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servicio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Capa de degradado inferior (Verde/Oscuro) para legibilidad del texto */
.servicio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Degradado que va desde transparente a un verde oscuro/opaco abajo */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(76, 95, 15, 0.95) 95%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 25px 20px;
}

/* Texto dentro de la tarjeta */
.servicio-card h3 {
    color: #ffffff !important; /* Texto estrictamente blanco */
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* Estilo del Botón de abajo para que coincida exactamente */
.servicios-lista-cta .boton {
    background-color: var(--e-global-color-secondary);
    color: white;
    padding: 12px 40px;
    font-weight: 700;
    border-radius: 4px; /* Un pequeño radio para el botón de la imagen */
}

/* ===== SECCIÓN DE TESTIMONIOS ===== */
.testimonios {
    padding: 80px 0;
    background-color: var(--e-global-color-primary);
    text-align: center;
}

.testimonios h2 {
    color: var(--e-global-color-secondary);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.testimonios-subtitulo {
    color: var(--e-global-color-ae456b3);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 50px;
}

.testimonios-carousel-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonios-carousel-wrapper {
    overflow: hidden;
    margin: 0 -15px;
}

/* ===== CORRECCIÓN PARA EL CAROUSEL DE TESTIMONIOS ===== */

.testimonios-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%; /* Asegura que el contenedor ocupe todo el ancho disponible */
}

.testimonio-slide {
    /* Fuerza a que cada slide ocupe exactamente un tercio del contenedor en escritorio */
    flex: 0 0 33.333%; 
    max-width: 33.333%;
    padding: 0 15px;
    box-sizing: border-box;
}

.testimonio-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: left;
    border: 1px solid #f0f0f0;
    
    height: 100%; 
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
    position: relative; /* Necesario para posicionar la línea verde abajo */
    padding-bottom: 35px; /* Espacio extra abajo para que no pise la línea verde */
}

.testimonio-header {
    margin-bottom: 0; /* Quitamos márgenes innecesarios */
    width: 100%; 
}

.testimonio-nombre-estrellas {
    display: flex;
    flex-direction: column; /* Cambiado a columna para que las estrellas vayan abajo del nombre */
    align-items: flex-start;
    gap: 2px;
    margin-bottom: 0;
}

/* CORRECCIÓN DE ESTRELLAS: Asegurar que no se rompan ni se oculten */
.testimonio-estrellas {
    color: var(--e-global-color-text); /* Ahora usa tu variable verde oscuro */
    font-size: 18px;
    letter-spacing: 1px;
    white-space: nowrap;
    display: inline-block;
    margin-top: 5px; /* Pequeña separación debajo del nombre */
    margin-bottom: 12px; /* Margen para que el texto empiece justo abajo */
}

.testimonio-texto {
    font-size: 14px;
    line-height: 1.6;
    color: var(--e-global-color-ae456b3);
    margin-top: 0; /* Asegura que pegue justo después de las estrellas */
    margin-bottom: 20px;
    display: -webkit-box;
    line-clamp: 8;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonio-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px; /* Grosor de la línea */
    background-color: var(--e-global-color-secondary); /* Color verde secundario */
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.testimonios-controles {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 35px;
}

.testimonio-btn {
    background: var(--e-global-color-secondary);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.testimonio-btn:hover {
    background: var(--e-global-color-text);
    transform: scale(1.05);
}

.testimonios-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.dot.active {
    background: var(--e-global-color-secondary);
    width: 30px;
    border-radius: 6px;
}

@media (max-width: 992px) {
    .testimonio-slide {
            flex: 0 0 50%;
            max-width: 50%; /* 2 columnas en tablets */
        }
}

@media (max-width: 768px) {
    .testimonios {
        padding: 50px 0;
    }
    .testimonios h2 {
        font-size: 28px;
    }
.testimonio-slide {
        flex: 0 0 100%;
        max-width: 100%; /* 1 columna en móviles */
    }
    .testimonio-card {
        min-height: 200px;
        padding: 20px;
    }
    .testimonio-nombre {
        font-size: 16px;
    }
    .testimonio-estrellas {
        font-size: 16px;
    }
    .testimonio-texto {
        font-size: 13px;
        -webkit-line-clamp: 5;
    }
    .testimonio-btn {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }
    .testimonios-controles {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .testimonio-card {
        padding: 15px;
        min-height: 180px;
    }
    .testimonio-nombre {
        font-size: 15px;
    }
    .testimonio-estrellas {
        font-size: 14px;
    }
    .testimonio-servicio {
        font-size: 12px;
    }
    .testimonio-texto {
        font-size: 12px;
        -webkit-line-clamp: 4;
    }
}

/* ===== SECCIÓN: HOW WE DO IT (Diseño Fiel con Imagen Central) ===== */
.servicios-como {
    padding: 90px 0;
    background-color: var(--e-global-color-primary);
    text-align: center;
}

.servicios-como h2 {
    color: var(--e-global-color-secondary);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
}

/* Grid de 3 columnas: Texto Izquierda | Imagen Central | Texto Derecha */
.servicios-como-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr; /* La columna central es ligeramente más ancha */
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Columnas de texto */
.servicios-como-col {
    display: flex;
    flex-direction: column;
    gap: 50px; /* Separación entre los dos bloques de texto */
}

/* Bloques individuales de texto (Izquierda y Derecha) */
.servicio-item-izq, .servicio-item-der {
    background: #fcfcfc;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eeeeee;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    text-align: left; /* Alineación limpia para lectura */
    transition: transform 0.3s ease;
}

.servicio-item-izq:hover, .servicio-item-der:hover {
    transform: translateY(-3px);
}

.servicio-texto h3 {
    color: var(--e-global-color-secondary);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.servicio-texto p {
    color: #555555;
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
}

/* Columna de la Imagen Central */
.col-imagen {
    display: flex;
    justify-content: center;
    align-items: center;
}

.col-imagen img {
    width: 100%;
    max-width: 400px; /* Evita que se deforme o crezca de más */
    height: auto;
    border-radius: 20px; /* Bordes redondeados idénticos a las tarjetas de arriba */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    object-fit: cover;
}

/* ===== SECCIÓN "LET US HANDLE THE HEAVY LIFTING" ===== */
.cta-final {
    padding: 80px 0;
    background-color: var(--e-global-color-primary);
    text-align: center;
}

.cta-final h2 {
    color: var(--e-global-color-secondary);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.cta-final-imagen-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.cta-final-imagen {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
}

.cta-final-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Contenedor de estadísticas - Horizontal en la parte inferior izquierda */
.cta-stats-container {
    position: absolute;
    bottom: 30px;
    left: 30px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Cada estadística */
.cta-stat {
    background: rgba(63, 87, 1, 0.88);
    backdrop-filter: blur(4px);
    padding: 14px 20px;
    border-radius: 10px;
    min-width: 140px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.stat-contenido {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.stat-numero {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    font-family: var(--e-global-typography-primary-font-family);
    line-height: 1;
}

.stat-icono {
    color: #ffffff;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    opacity: 0.9;
}

.stat-etiqueta {
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
    font-weight: 400;
    display: block;
    margin-top: 3px;
    font-family: var(--e-global-typography-text-font-family);
}

/* Footer con texto y botón */
.cta-final-footer {
    margin-top: 40px;
    text-align: center;
}

.cta-descripcion {
    color: var(--e-global-color-text);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
}

.cta-boton {
    background-color: var(--e-global-color-secondary);
    color: var(--e-global-color-primary);
    padding: 16px 50px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 0;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-boton:hover {
    background-color: var(--e-global-color-text);
    color: var(--e-global-color-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(63, 87, 1, 0.3);
}

/* ===== RESPONSIVE CTA FINAL ===== */
@media (max-width: 1024px) {
    .cta-final h2 {
        font-size: 36px;
    }
    
    .cta-stats-container {
        bottom: 20px;
        left: 20px;
        gap: 15px;
    }
    
    .cta-stat {
        min-width: 120px;
        padding: 12px 16px;
    }
    
    .stat-numero {
        font-size: 24px;
    }
    
    .stat-icono {
        width: 20px;
        height: 20px;
    }
    
    .stat-etiqueta {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .cta-final {
        padding: 50px 0;
    }
    
    .cta-final h2 {
        font-size: 30px;
        margin-bottom: 30px;
    }
    
    .cta-final-imagen {
        aspect-ratio: 4/3;
    }
    
    .cta-stats-container {
        bottom: 15px;
        left: 15px;
        gap: 10px;
    }
    
    .cta-stat {
        min-width: 90px;
        padding: 10px 12px;
        border-radius: 8px;
    }
    
    .stat-contenido {
        gap: 8px;
    }
    
    .stat-numero {
        font-size: 18px;
    }
    
    .stat-icono {
        width: 16px;
        height: 16px;
    }
    
    .stat-etiqueta {
        font-size: 9px;
        margin-top: 2px;
    }
    
    .cta-descripcion {
        font-size: 17px;
    }
    
    .cta-boton {
        padding: 14px 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .cta-final h2 {
        font-size: 24px;
    }
    
    .cta-final-imagen {
        aspect-ratio: 3/4;
    }
    
    .cta-stats-container {
        bottom: 10px;
        left: 10px;
        gap: 8px;
        flex-direction: column;
        width: calc(100% - 20px);
    }
    
    .cta-stat {
        min-width: 100%;
        padding: 8px 12px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .stat-contenido {
        gap: 6px;
        flex: 1;
    }
    
    .stat-numero {
        font-size: 16px;
    }
    
    .stat-icono {
        width: 14px;
        height: 14px;
    }
    
    .stat-etiqueta {
        font-size: 10px;
        margin-top: 0;
        text-align: right;
    }
    
    .cta-descripcion {
        font-size: 15px;
    }
    
    .cta-boton {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* ===== RESPONSIVE PARA HOW WE DO IT ===== */
@media (max-width: 992px) {
    .servicios-como-grid {
        grid-template-columns: 1fr; /* Se vuelve una sola columna en tablets/móviles */
        gap: 30px;
    }

    .col-imagen {
        grid-row: 1; /* Pone la imagen arriba en móviles para que mantenga sentido visual */
        margin-bottom: 20px;
    }
    
    .servicios-como-col {
        gap: 25px;
    }
    
    .servicio-item-izq, .servicio-item-der {
        text-align: center; /* Centrado en móviles para mejor estética */
    }
}

/* ===== RESPONSIVE AJUSTADO ===== */
@media (max-width: 992px) {
    .servicios-lista-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }
}

@media (max-width: 650px) {
    .servicios-lista-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
    }
    .servicio-card {
        height: 380px;
    }
}

/* Ajuste responsivo existente corregido */
@media (max-width: 1024px) {
    .servicios-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .servicios-imagen {
        margin: 0 auto;
    }
}

/* ===== RESPONSIVE PARA CARACTERÍSTICAS ===== */
@media (max-width: 768px) {
    .caracteristicas-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .caracteristica-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 10px;
    }
    
    .caracteristica-texto h3 {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .caracteristicas {
        padding: 20px 0;
    }
    
    .caracteristica-item {
        gap: 8px;
    }
    
    .caracteristica-icono svg {
        width: 32px;
        height: 32px;
    }
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

.main-navigation a:hover {
    color: var(--e-global-color-secondary);
}

/* ===== FUENTE PARA PLACEHOLDERS EN BOOK NOW ===== */
/* Aplica a todos los placeholders del formulario */
#bookingForm input::placeholder,
#bookingForm select::placeholder,
#bookingForm textarea::placeholder {
    font-family: 'Montserrat', var(--e-global-typography-text-font-family), sans-serif !important;
    font-size: var(--e-global-typography-text-font-size) !important;
    font-weight: 300 !important; /* Light */
    color: #999 !important;
    line-height: var(--e-global-typography-text-line-height) !important;
}

/* Para compatibilidad con navegadores */
#bookingForm ::-webkit-input-placeholder {
    font-family: 'Montserrat', var(--e-global-typography-text-font-family), sans-serif !important;
    font-weight: 300 !important;
    color: #999 !important;
}

#bookingForm ::-moz-placeholder {
    font-family: 'Montserrat', var(--e-global-typography-text-font-family), sans-serif !important;
    font-weight: 300 !important;
    color: #999 !important;
}

#bookingForm :-ms-input-placeholder {
    font-family: 'Montserrat', var(--e-global-typography-text-font-family), sans-serif !important;
    font-weight: 300 !important;
    color: #999 !important;
}

/* Si quieres que también aplique al textarea específico del mensaje */
#mensaje::placeholder {
    font-family: 'Montserrat', var(--e-global-typography-text-font-family), sans-serif !important;
    font-weight: 300 !important;
    color: #999 !important;
}

/* Para los campos de entrada específicos */
#nombre::placeholder,
#email::placeholder,
#telefono::placeholder {
    font-family: 'Montserrat', var(--e-global-typography-text-font-family), sans-serif !important;
    font-weight: 300 !important;
    color: #999 !important;
}

/* ===== HEADER ===== */
.site-header {
    background-color: var(--e-global-color-primary);
    padding: 10px 0; /* Padding reducido para compensar */
    border-bottom: 1px solid var(--e-global-color-accent);
    position: sticky;
    top: 0;
    z-index: 100;
    height: 80px; /* Altura fija! Esto evita que crezca */
    overflow: hidden; /* Oculta el exceso si el logo es más grande */
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%; /* Ocupa toda la altura del header */
}

/* Alinear los items del menú verticalmente */
.main-navigation ul {
    display: flex;
    align-items: center; /* Añadir esta línea */
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

/* Asegurar que todos los enlaces tengan la misma altura */
.main-navigation a {
    font-family: var(--e-global-typography-accent-font-family);
    font-size: var(--e-global-typography-accent-font-size);
    font-weight: var(--e-global-typography-accent-font-weight);
    color: var(--e-global-color-text);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex; /* Añadir */
    align-items: center; /* Añadir */
    height: 100%; /* Añadir */
    line-height: 1; /* Añadir para consistencia */
}

/* ===== HERO CON IMAGEN DE FONDO ===== */
.hero-fondo {
    background-image: url('../../imgs/index/loading_furniture.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0;
}

/* Overlay oscuro para mejorar legibilidad del texto */
.hero-fondo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero-fondo .container {
    position: relative;
    z-index: 1;
}

.hero-fondo .hero-contenido {
    max-width: 800px;
    text-align: left;
}

/* Título principal - ambos en la misma línea */
.hero-fondo h1 {
    color: #ffffff !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
    font-size: 62px;
    line-height: 72px;
}

.hero-fondo h1 .highlight {
    color: var(--e-global-color-secondary);
}

/* Descripción - texto completo en una línea */
.hero-fondo .hero-descripcion {
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-size: 20px;
    font-weight: 400;
    max-width: 700px;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.9;
    white-space: nowrap; /* Mantiene el texto en una sola línea */
}

/* Botón más pequeño */
.hero-fondo .boton-hero {
    background-color: var(--e-global-color-secondary);
    color: var(--e-global-color-primary);
    border: 2px solid var(--e-global-color-secondary);
    padding: 10px 30px;
    font-size: 15px;
    transition: all 0.3s ease;
    border-radius: 0;
}

.hero-fondo .boton-hero:hover {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
    transform: scale(1.05);
}

/* ===== RESPONSIVE PARA HERO CON FONDO ===== */
@media (max-width: 1024px) {
    .hero-fondo {
        min-height: 70vh;
        padding: 80px 0;
        background-position: 70% center;
    }
    
    .hero-fondo .hero-contenido {
        max-width: 600px;
    }
    
    .hero-fondo h1 {
        font-size: 48px !important;
        line-height: 56px !important;
    }
    
    .hero-fondo .hero-descripcion {
        font-size: 17px;
        white-space: normal; /* Permite que se rompa en tablet */
        max-width: 550px;
    }
}

@media (max-width: 768px) {
    .hero-fondo {
        min-height: 60vh;
        padding: 60px 0;
        background-position: 60% center;
    }
    
    .hero-fondo .hero-contenido {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-fondo h1 {
        font-size: 32px !important;
        line-height: 40px !important;
    }
    
    .hero-fondo h1 .highlight {
        display: block; /* En móvil, "Handled With Care" va abajo */
    }
    
    .hero-fondo .hero-descripcion {
        font-size: 15px;
        white-space: normal;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-fondo .boton-hero {
        padding: 10px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-fondo h1 {
        font-size: 28px !important;
        line-height: 36px !important;
    }
    
    .hero-fondo .hero-descripcion {
        font-size: 14px;
    }
}

/* Si quieres un efecto parallax sutil (opcional) */
@media (min-width: 769px) {
    .hero-fondo {
        background-attachment: fixed;
    }
}

/* ===== BOTÓN DE NAVEGACIÓN "BOOK NOW" ===== */
.boton-nav {
    background-color: var(--e-global-color-secondary) !important;
    color: var(--e-global-color-primary) !important;
    padding: 8px 20px !important; /* Reducir padding vertical */
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important; /* Cambiar a inline-flex */
    align-items: center !important;
    justify-content: center !important;
    height: auto !important; /* Permitir altura automática */
    line-height: 1.2 !important; /* Ajustar line-height */
}

.boton-nav:hover {
    background-color: var(--e-global-color-secondary) !important;
    color: var(--e-global-color-primary) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(63, 87, 1, 0.3) !important;
}

.hero-fondo .hero-descripcion {
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-size: 18px;
    font-weight: 400;
    max-width: 550px;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.9;
}


/* ===== HERO SECTION ===== */
.hero {
    background-color: var(--e-global-color-accent);
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    color: var(--e-global-color-secondary);
    margin-bottom: 20px;
}

.hero .subtitulo {
    font-family: var(--e-global-typography-accent-font-family);
    font-size: 24px;
    color: var(--e-global-color-text);
    margin-bottom: 30px;
}

/* ===== BOTONES ===== */
.boton {
    display: inline-block;
    font-family: var(--e-global-typography-accent-font-family);
    font-size: var(--e-global-typography-accent-font-size);
    font-weight: var(--e-global-typography-accent-font-weight);
    text-transform: var(--e-global-typography-accent-text-transform);
    line-height: var(--e-global-typography-accent-line-height);
    color: var(--e-global-color-primary);
    background-color: var(--e-global-color-secondary);
    padding: 12px 30px;
    border-radius: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.boton:hover {
    background-color: var(--e-global-color-text);
    color: var(--e-global-color-primary);
}

/* ===== SECCIONES ===== */
section {
    padding: 80px 0;
}

.servicios-destacados h2,
.filosofia h2,
.quienes-somos h2 {
    color: var(--e-global-color-secondary);
}

.servicios-destacados h3,
.filosofia h3,
.quienes-somos h3 {
    color: var(--e-global-color-text);
}

/* ===== ESTADÍSTICAS ===== */
.estadisticas {
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin-top: 50px;
    gap: 30px;
}

.stat {
    flex: 1;
}

.stat .numero {
    display: block;
    font-family: var(--e-global-typography-primary-font-family);
    font-size: 48px;
    font-weight: var(--e-global-typography-primary-font-weight);
    color: var(--e-global-color-secondary);
    line-height: 1.2;
}

.stat .etiqueta {
    font-family: var(--e-global-typography-accent-font-family);
    font-size: var(--e-global-typography-accent-font-size);
    color: var(--e-global-color-text);
}

/* ===== FORMULARIO DE CONTACTO ===== */
.contacto {
    background-color: var(--e-global-color-accent);
}

.formulario-contacto {
    max-width: 600px;
    margin: 0 auto;
}

.formulario-contacto form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.formulario-contacto label {
    font-family: var(--e-global-typography-accent-font-family);
    font-size: var(--e-global-typography-accent-font-size);
    font-weight: var(--e-global-typography-accent-font-weight);
    color: var(--e-global-color-text);
    margin-bottom: 5px;
}

.formulario-contacto input,
.formulario-contacto textarea {
    font-family: var(--e-global-typography-text-font-family);
    font-size: var(--e-global-typography-text-font-size);
    padding: 12px;
    border: 1px solid var(--e-global-color-secondary);
    background-color: var(--e-global-color-primary);
    color: var(--e-global-color-text);
    width: 100%;
}

.formulario-contacto input:focus,
.formulario-contacto textarea:focus {
    outline: 2px solid var(--e-global-color-secondary);
    outline-offset: 2px;
}

.formulario-contacto button {
    align-self: flex-start;
}

/* ===== FOOTER ===== */
.site-footer {
    background-color: var(--e-global-color-text);
    color: var(--e-global-color-primary);
    padding: 60px 0 50px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

/* Logo del footer - MÁS PEQUEÑO */
.footer-logo img {
    max-height: 50px; /* Reducido de 80px a 50px */
    width: auto;
    display: block;
}

.footer-texto {
    color: var(--e-global-color-primary);
    font-family: var(--e-global-typography-text-font-family);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    margin: 0;
}

.footer-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-navigation a {
    color: var(--e-global-color-primary);
    font-family: var(--e-global-typography-accent-font-family);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s ease;
    text-transform: capitalize;
}

.footer-navigation a:hover {
    opacity: 0.7;
    color: var(--e-global-color-secondary);
}

.footer-social {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 5px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    background-color: var(--e-global-color-secondary);
    transform: translateY(-3px);
}

.footer-social a svg {
    width: 22px;
    height: 22px;
    display: block;
}

/* ===== RESPONSIVE FOOTER ===== */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 30px 0;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .footer-texto {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .footer-navigation ul {
        gap: 25px;
    }
    
    .footer-navigation a {
        font-size: 14px;
    }
    
    .footer-social a {
        width: 38px;
        height: 38px;
    }
    
    .footer-social a svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 30px 0 25px 0;
    }
    
    .footer-content {
        gap: 20px;
    }
    
    .footer-texto {
        font-size: 14px;
    }
    
    .footer-navigation ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-navigation a {
        font-size: 16px;
    }
    
    .footer-social {
        gap: 15px;
    }
    
    .footer-social a {
        width: 40px;
        height: 40px;
    }
    
    .footer-social a svg {
        width: 20px;
        height: 20px;
    }
}

/* ===== MEDIA QUERIES (Tablet - 1024px) ===== */
@media (max-width: 1024px) {
    body {
        font-size: 14px;
        line-height: 18px;
    }
    
    h1, .h1 {
        font-size: 50px;
        line-height: 60px;
    }
    
    h2, .h2 {
        font-size: 30px;
        line-height: 36px;
    }
    
    h3, .h3,
    .boton,
    .main-navigation a {
        font-size: 14px;
        line-height: 18px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero .subtitulo {
        font-size: 20px;
    }
    
    .estadisticas {
        flex-direction: column;
        gap: 40px;
    }
    
    .stat .numero {
        font-size: 70px;
        line-height: 76px;
    }
}

/* ===== MEDIA QUERIES (Móvil) ===== */
@media (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-navigation ul {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    section {
        padding: 50px 0;
    }
    
    h1, .h1 {
        font-size: 40px;
        line-height: 48px;
    }
    
    h2, .h2 {
        font-size: 28px;
        line-height: 32px;
    }
    
    .hero .subtitulo {
        font-size: 18px;
    }
    
    .formulario-contacto button {
        align-self: stretch;
    }
}

/* ===== PÁGINA BOOK NOW ===== */
.booknow-hero {
    background-color: var(--e-global-color-accent);
    padding: 60px 0;
    text-align: center;
}

.booknow-hero h1 {
    font-size: 64px;
    color: var(--e-global-color-secondary);
    margin-bottom: 20px;
}

.booknow-hero .descripcion-hero {
    font-size: 20px;
    max-width: 600px;
    margin: 20px auto 0;
}

/* Grid principal */
.booknow-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    margin: 60px 0;
}

/* Formulario */
.booknow-formulario {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.booknow-formulario h2 {
    color: var(--e-global-color-text);
    margin-bottom: 10px;
}

.form-intro {
    color: #666;
    margin-bottom: 30px;
}

.form-booknow .campo {
    margin-bottom: 25px;
}

.form-booknow label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--e-global-color-text);
}

.form-booknow .required {
    color: #e44;
    margin-left: 3px;
}

.form-booknow input,
.form-booknow select,
.form-booknow textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #eef0f2;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #f9fafc;
}

.form-booknow input:focus,
.form-booknow select:focus,
.form-booknow textarea:focus {
    border-color: var(--e-global-color-secondary);
    background-color: white;
    outline: none;
    box-shadow: 0 0 0 4px rgba(118, 127, 47, 0.1);
}

.form-booknow .checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-booknow .checkbox input {
    width: auto;
    margin-right: 10px;
}

.form-booknow .checkbox label {
    margin-bottom: 0;
    font-weight: normal;
}

.boton-enviar {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    border-radius: 50px;
    background-color: var(--e-global-color-secondary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.boton-enviar:hover {
    background-color: var(--e-global-color-text);
    gap: 15px;
}

.boton-enviar .flecha {
    transition: transform 0.3s ease;
}

.boton-enviar:hover .flecha {
    transform: translateX(5px);
}

/* Info Cards */
.booknow-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card h3 {
    color: var(--e-global-color-secondary);
    margin-bottom: 15px;
    font-size: 22px;
}

.telefono-link {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    color: var(--e-global-color-text);
    text-decoration: none;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.telefono-link:hover {
    color: var(--e-global-color-secondary);
}

.horarios {
    list-style: none;
    padding: 0;
}

.horarios li {
    margin-bottom: 10px;
    color: #666;
}

.horarios span {
    font-weight: 600;
    color: var(--e-global-color-text);
}

.mapa-card {
    padding: 0;
    overflow: hidden;
}

.mapa-card h3 {
    padding: 30px 30px 0 30px;
    margin-bottom: 20px;
}

.mapa-container {
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
}

.mapa-container iframe {
    width: 100%;
    height: 100%;
}

.direccion {
    padding: 0 30px;
    margin: 10px 0;
    color: var(--e-global-color-text);
    font-weight: 500;
}

.direccion-link {
    display: block;
    padding: 0 30px 30px 30px;
    color: var(--e-global-color-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.direccion-link:hover {
    color: var(--e-global-color-text);
}

.respuesta-rapida {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, var(--e-global-color-accent) 0%, white 100%);
}

.icono-respuesta {
    font-size: 40px;
    line-height: 1;
}

.texto-respuesta h4 {
    color: var(--e-global-color-secondary);
    margin-bottom: 5px;
}

/* Proceso después de reservar */
.booknow-proceso {
    background-color: var(--e-global-color-accent);
    padding: 80px 0;
    text-align: center;
}

.proceso-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.proceso-paso {
    background: white;
    padding: 30px;
    border-radius: 20px;
    position: relative;
}

.paso-numero {
    width: 50px;
    height: 50px;
    background: var(--e-global-color-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.proceso-paso h3 {
    color: var(--e-global-color-text);
    margin-bottom: 10px;
}

/* FAQ */
.booknow-faq {
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    background: #f9fafc;
    padding: 30px;
    border-radius: 15px;
}

.faq-item h3 {
    color: var(--e-global-color-secondary);
    margin-bottom: 10px;
}

/* CTA Simple */
.cta-simple {
    background-color: var(--e-global-color-text);
    color: white;
    text-align: center;
    padding: 60px 0;
}

.cta-simple p {
    font-size: 24px;
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 1024px) {
    .booknow-grid {
        grid-template-columns: 1fr;
    }
    
    .proceso-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .booknow-hero h1 {
        font-size: 48px;
    }
    
    .proceso-grid {
        grid-template-columns: 1fr;
    }
    
    .booknow-formulario {
        padding: 20px;
    }
}