.elementor-65 .elementor-element.elementor-element-1ddda2d{--display:flex;--align-items:stretch;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}.elementor-65 .elementor-element.elementor-element-1ddda2d.e-con{--align-self:stretch;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-65 .elementor-element.elementor-element-1ddda2d{--content-width:1292px;}}/* Start custom CSS for html, class: .elementor-element-dba8112 *//* Variables CSS para consistencia de color y fuente */
:root {
    --primary-color: #efb810; /* amarillo*/
    --secondary-color: #000000; /* Azul Oscuro (el fondo de las secciones) */
    --text-color: #333;
    --light-text-color: #fff;
    --bg-light: #f9f9f9;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --heading-color: #333; /* Usado para encabezados en fondos claros */
}

/* Estilos Globales y Reset Básico */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

h1, h2, h3 {
    margin-bottom: 0.5em;
    font-weight: 700;
}

h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 0.2em;
}

section {
    padding: 50px 0;
}

.text-center {
    text-align: center;
}

.subtitle {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
}

/* --- Botones --- */
.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s, border-color 0.3s;
    text-decoration: none; /* CLAVE: Elimina el subrayado de los enlaces */
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-text-color);
}

.btn-primary:hover {
    background-color: #ffff00; /* Un poco más oscuro */
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--light-text-color);
    color: var(--light-text-color);
    padding: 10px 23px; /* Ajuste para el borde */
}

.btn-secondary-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 23px;
}

.btn-secondary-outline:hover {
    background-color: var(--primary-color);
    color: var(--light-text-color);
}

.btn-primary-alt {
    background-color: var(--secondary-color);
    color: var(--light-text-color);
}

.btn-primary-alt:hover {
    background-color: #ffff00;
}

/* --- Navbar (Header) --- */
.navbar {
    background-color: #fff;
    height: 72px;
    padding: 16px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    /* Aquí se asume que es una imagen o un texto estilizado */
    height: 40px; 
    width: auto;
}

.navbar .nav-links a {
    text-decoration: none;
    color: var(--text-color);
    margin: 0 16px;
    font-weight: 500;
    background-color: var(--primary-color);
    color: var(--light-text-color);
}

/* --- 1. Hero Section --- */
.hero-section {
    background: url("https://team360global.com/wp-content/uploads/2025/11/Hero-banner-scaled.png");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--secondary-color);
    color: var(--light-text-color);
    padding: 0;
}


.hero-content {
    padding: 80px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    background-position: center top;
    background-size: cover;
}

.hero-text-area {
    flex: 1;
    
}
.hero-text-area .highlight-text {
    /* Color de fondo: Usamos el color principal (amarillo/naranja) */
    background-color: var(--primary-color); 
    
    /* Color de texto: Un color oscuro para que contraste bien con el fondo claro */
    color: var(--secondary-color); /* Negro u otro color oscuro */
    
    font-weight: 700; /* Hace que el texto dentro sea más audaz */
    font-size: 0.9em; /* Puedes ajustar el tamaño de fuente si es necesario */
    
    /* Relleno (padding) para crear el espacio de la "caja" */
    padding: 5px 10px; /* Más padding para un efecto de caja más notorio */
    
    /* Bordes redondeados */
    border-radius: 6px; /* Bordes más redondeados para un aspecto de "chip" */
    
    /* Importante para que no rompa la línea y se ajuste al texto */
    display: inline-block; 
    
    /* Sombra de caja para darle profundidad */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Sombra suave para un efecto 3D */
    
    /* Alineación vertical para que se vea bien en la línea de texto */
    vertical-align: middle; 
}

.hero-text-area p {
    color: var(--light-text-color); 
    font-size: 1.1em;
    /*text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9); /* Sombra de texto para mejorar legibilidad del resto del párrafo */
}

.hero-content h1 {
    font-size: 3.5em;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-buttons {
    margin: 30px 0;
    display: flex;
    gap: 15px;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03); /* Sombra sutil */
}

.hero-buttons .btn {
    flex: 1;
    text-align: center;
}

.retention-rate {
    font-weight: 600;
    font-size: 0.9em;
    color: var(--primary-color);
    margin-top: 15px;
}

.hero-image-popup {
    flex: 1;
    max-width: 450px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.popup-image-container {
    margin-bottom: 15px;
}

.popup-image {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    object-fit: cover;
    display: block;
  
}

.popup-info h4 {
    margin-bottom: 10px;
    color: var(--light-text-color);
}

.popup-checks span {
    display: inline-block;
    margin-right: 15px;
    font-size: 0.9em;
}

.popup-checks i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* --- 2. Challenge Section --- */
.challenge-section {
    padding: 80px 0;
    text-align: center;
}

.challenge-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.challenge-card {
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #ddd;
    flex: 1;
    max-width: 300px;
    text-align: left;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s; 
    cursor: pointer;
}

.challenge-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px); 
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--light-text-color);
}

.icon-circle.gold {
    background-color: var(--primary-color);
}
.icon-circle.orange {
    background-color: var(--primary-color);
}


/* --- 3. Solution Section (Comparison) --- */
.solution-section {
    background-color: #fff;
    padding: 80px 0;
}

.solution-content-grid {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    align-items: center;
}

.comparison-table {
    flex: 1.5;
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    margin-bottom: 25px;
    color: var(--heading-color);
    text-align: center;
    padding-bottom: 15px;
}

.comparison-row {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 15px;
    border-bottom: 1px solid #eee;
    font-size: 1.05em;
    text-align: center;
    border-radius: 6px;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.comparison-row:last-child {
    border-bottom: none;
    text-align: center;
}

.label {
    font-weight: 700;
    color: var(--secondary-color);
    
}

.value-trad {
    color: #e74c3c; /* Rojo para lo tradicional */
    text-decoration: line-through;
    font-weight: 500;
    width: 30%;
    text-align: right;
}

.arrow {
    font-size: 1.2em;
    color: #bbb;
    margin: 0 10px;
}

.value-360.green {
    color: #efb810; /* amarillo para la solución */
    font-weight: 700;
    width: 30%;
    text-align: left;
}

.solution-image-card {
    flex: 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.solution-image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.image-text {
    padding: 15px;
    background-color: var(--secondary-color);
    color: var(--light-text-color);
}
.image-text h4 {
    margin: 0;
    font-size: 1.2em;
}
.image-text p {
    font-size: 0.9em;
    margin-top: 5px;
}


/* --- 4. WHY CHOOSE SECTION (5 Cards) --- */
.why-choose-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.feature-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    border: 1px solid transparent;
    overflow: hidden;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.learn-more-text {
    display: block;
    margin-top: 15px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
}

/* Contenido de expansión (Hover Content) */
.feature-expansion {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    padding: 25px;
    border-radius: 8px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: opacity 0.3s, transform 0.3s, visibility 0s 0.3s;
    z-index: 10;
    text-align: left;
}

.feature-card:hover .feature-expansion {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transition: opacity 0.3s, transform 0.3s;
}

.feature-expansion ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.feature-expansion ul li {
    font-size: 0.9em;
    margin-bottom: 5px;
    display: flex;
    align-items: flex-start;
}

.feature-expansion ul li i {
    color: #efb810;
    margin-right: 8px;
    font-size: 0.9em;
    margin-top: 2px;
}

.feature-expansion .key-detail {
    display: block;
    font-size: 0.8em;
    background-color: #f0f0f0;
    color: #666;
    padding: 4px 8px;
    border-radius: 4px;
    margin-top: 5px;
    font-weight: 500;
}


/* --- 5. HOW IT WORKS SECTION (Timeline) --- */
.how-it-works-section {
    padding: 80px 0;
}

.timeline-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 40px 0;
    margin-bottom: 40px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 65px; /* Línea central */
    left: 10%;
    right: 10%;
    height: 3px;
    background-color: #ddd;
    z-index: 1;
}

.timeline-step {
    flex: 1;
    max-width: 25%;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-step .icon-circle {
    margin: 0 auto 20px auto;
    box-shadow: 0 0 0 8px #fff, 0 0 0 10px var(--primary-color);
}
/* ========================================================= */
/* --- 5.1 TIMELINE INTERACTION (HOVER) --- */
/* ========================================================= */

/* 1. Estilos Iniciales para el Contenido Extra (OCULTAR) */
.timeline-step .step-extra-info {
    /* Ocultar el contenido y eliminar su altura */
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    
    /* Configuración para la animación de deslizamiento */
    transition: max-height 0.5s ease-in-out, opacity 0.4s ease-in-out;
    
    /* Estilos de la caja (inicialmente el padding vertical es cero) */
    background-color: var(--light-bg-color, #f9f9f9); 
    border: 1px solid var(--border-color, #eee);
    border-radius: 4px;
    margin-top: 15px;
    padding: 0 15px; /* Padding vertical en 0 */
    
    font-size: 0.9em;
    line-height: 1.5;
}

/* 2. Estilos para el Efecto Hover (MOSTRAR) */
.timeline-step:hover .step-extra-info {
    /* Mostrar el contenido dándole una altura máxima grande */
    max-height: 300px; 
    opacity: 1;
    
    /* Restaurar el relleno para que el contenido se vea */
    padding: 15px; 
}

/* 3. Estilos de Resalte al hacer Hover (OPCIONAL) */
.timeline-step {
    transition: box-shadow 0.3s, background-color 0.3s;
    cursor: pointer;
}

.timeline-step:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08); 
}

/* ===================================== */
/* MEDIA QUERIES (Responsividad) */
/* ===================================== */
@media (max-width: 992px) {
    /* ... Ahora, aquí SÓLO estarán los estilos de responsividad ... */
}
.step-details {
    margin-top: 20px;
}

.step-title {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--secondary-color);
}

.days {
    color: #888;
    font-weight: 500;
    margin-left: 5px;
}

.step-extra-info {
    text-align: left;
    margin-top: 20px;
    padding: 15px;
    background-color: var(--bg-light);
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 0.9em;
    box-shadow: var(--box-shadow);
}

.step-extra-info ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.step-extra-info ul li {
    margin-bottom: 5px;
    display: flex;
    align-items: flex-start;
}

.step-extra-info ul li i {
    color: #efb810;
    margin-right: 8px;
    margin-top: 2px;
}

.metrics-bar {
    display: flex;
    justify-content: space-around;
    background-color: var(--secondary-color);
    color: var(--light-text-color);
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
}

.metric-item {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 2em;
    font-weight: 800;
    color: var(--primary-color);
}

.metric-label {
    font-size: 0.9em;
    color: #ccc;
    margin-top: 5px;
}

.small-text {
    font-size: 0.85em;
    color: #888;
    margin-top: 10px;
}

/* ===================================== */
/* 1. EOR SECTION */
/* ===================================== */
.eor-section {
    padding: 80px 0;
    background-color: #fff; /* Fondo Blanco para esta sección */
}

/* Texto de Etiqueta/Eyebrow Text (Naranja) */
.eyebrow-text {
    display: block;
    font-size: 0.8em;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.eor-section h2 {
    color: var(--secondary-color);
    font-size: 2.5em;
    font-weight: 800;
    margin-top: 0;
}

.eor-features-grid {
    max-width: 1100px;
    margin: 40px auto 0;
    display: grid;
    /* 3 columnas en desktop */
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
}

.eor-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #eee; /* Borde sutil, como en la imagen */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03); /* Sombra sutil */
    transition: box-shadow 0.3s;
    text-align: left;
}

.eor-card:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Caja de Íconos */
.eor-icon-box {
    width: 50px;
    height: 50px;
    background-color: #f0f0f0;
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
    margin-bottom: 15px;
}

.eor-icon-box i {
    color: var(--primary-color); /* Color del ícono (Naranja) */
}

.eor-card h4 {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.eor-card p {
    font-size: 0.9em;
    color: #555;
    line-height: 1.5;
}

/* Responsividad */
@media (max-width: 992px) {
    .eor-features-grid {
        /* 2 columnas en tablet */
        grid-template-columns: repeat(2, 1fr); 
    }
}
@media (max-width: 576px) {
    .eor-features-grid {
        /* 1 columna en móvil */
        grid-template-columns: 1fr; 
    }
    .eor-section h2 {
        font-size: 2em;
    }
}

/* --- 6. TRUSTED BY GROWING COMPANIES (Testimonial) --- */
.testimonial-section {
    background-color: #fff;
    padding: 80px 0;
}

.testimonial-card {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    display: grid;
    grid-template-areas: 
        "info metrics"
        "quote metrics"
        "stats stats";
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.reviewer-info {
    grid-area: info;
    display: flex;
    align-items: center;
}

.reviewer-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.reviewer-title {
    font-size: 0.9em;
    color: #777;
}

.linkedin-link {
    color: #0077b5;
    text-decoration: none;
    font-size: 0.9em;
}

.testimonial-quote {
    grid-area: quote;
    font-size: 1.1em;
    font-style: italic;
    color: var(--text-color);
    border-left: 3px solid var(--primary-color);
    padding-left: 15px;
}

.testimoni {
    grid-area: quote;
    font-size: 1.em;
    font-style: italic;
    color: var(--text-color);
    padding-left: 15px;
}

.testimonial-metrics-desktop {
    grid-area: metrics;
}

.metrics-box {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.metrics-title {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.metric-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 0.9em;
}

.metric-value.green {
    font-weight: 600;
    color: #2ecc71;
}

.testimonial-stats {
    grid-area: stats;
    display: flex;
    justify-content: space-around;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.stat-item {
    text-align: center;
}

.stat-value.orange {
    font-size: 1.8em;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    display: block;
    font-size: 0.9em;
    color: #555;
    margin-top: 5px;
}

.testimonial-pagination {
    text-align: center;
    margin-top: 20px;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #ddd;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background-color: var(--primary-color);
}


/* ===================================== */
/* 7. CONTACT FORM (3 PASOS) - Multistep Form Styles */
/* ===================================== */

.contact-form-section {
    padding: 100px 0;
    background-color: var(--secondary-color); 
    color: white;
}

.form-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.form-text-content {
    flex: 1;
    max-width: 50%;
}

.form-text-content h2 {
    color: white;
    font-size: 2.2em;
    margin-bottom: 10px;
    text-align: left; 
}

.subtitle-form {
    color: #ccc;
    font-size: 1.1em;
    margin-bottom: 30px;
    text-align: left;
}

.form-benefits {
    margin-top: 20px;
}

.form-benefits p {
    margin-bottom: 15px;
    font-size: 1.05em;
    font-weight: 600;
}

.form-benefits ul {
    list-style: none;
    padding: 0;
}

.form-benefits ul li {
    font-size: 1em;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.form-benefits ul li i {
    color: #efb810; 
    margin-right: 10px;
    margin-top: 3px;
}

/* --- Tarjeta del Formulario --- */
.contact-form-card {
    flex: 1;
    max-width: 50%;
    background-color: #fff; 
    color: var(--text-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-top: 5px solid var(--primary-color);
}

.contact-form-card h3 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.5em;
    color: var(--secondary-color);
}

/* --- Barra de Progreso (Multi-step) --- */
.form-progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.step-indicator {
    flex: 1;
    text-align: center;
    font-size: 0.9em;
    font-weight: 600;
    color: #bbb;
    position: relative;
    padding-bottom: 15px;
}

.step-indicator.active {
    color: var(--primary-color);
}

.step-indicator::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #eee;
}

.step-indicator.active::after {
    background-color: var(--primary-color);
}

/* --- Contenido de los Pasos --- */
.form-step {
    display: none;
    animation: fadeIn 0.4s ease-out; 
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 0.9em;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    background-color: #fcfcfc;
    color: var(--text-color);
    transition: border-color 0.2s;
}

/* --- Botones del Formulario --- */
.btn-primary-form {
    width: 100%;
    padding: 15px; 
    border: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.1em;
    margin-top: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    background-color: var(--primary-color);
    color: var(--light-text-color);
}

.btn-primary-form:hover {
    background-color: #e67a3a; 
}

.form-disclaimer {
    text-align: center;
    font-size: 0.8em;
    color: #999;
    margin-top: 15px;
}

/* Acciones (Botones de Atrás/Siguiente en el Paso 2) */
.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
}

.form-actions .btn-primary-form {
    width: 60%;
    margin: 0;
}
.form-actions .btn-secondary-outline {
    width: 40%;
    margin: 0;
}

.contact-form-card .btn-secondary-outline {
    background-color: #f0f0f0;
    color: var(--text-color);
    border: 1px solid #ddd;
    padding: 12px 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: center;
    line-height: 1.5; 
}
.contact-form-card .btn-secondary-outline:hover {
    background-color: #e0e0e0;
}


/* ===================================== */
/* 8. FAQ SECTION */
/* ===================================== */
.faq-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.faq-search-bar {
    max-width: 600px;
    margin: 30px auto;
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-search-bar i {
    margin-right: 10px;
    color: #888;
}

.faq-search-bar input {
    border: none;
    flex-grow: 1;
    font-size: 1em;
    outline: none;
}

.faq-tabs {
    text-align: center;
    margin-bottom: 40px;
}

.faq-tabs .tab {
    padding: 8px 15px;
    margin: 5px;
    border: 1px solid #ddd;
    background-color: #fff;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 0.9em;
    font-weight: 500;
    display: inline-block;
}

.faq-tabs .tab.active, .faq-tabs .tab:hover {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    border-color: var(--primary-color);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background-color: #fff;
    margin-bottom: 10px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 20px;
    border: none;
    background: none;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--secondary-color);
    transition: color 0.3s;
}

.accordion-header:hover {
    color: var(--primary-color);
}

.accordion-header i {
    transition: transform 0.3s;
}

.accordion-header.active i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    padding: 0 20px;
    border-top: 1px solid #eee; /* Se agrega al abrir */
}

.accordion-content p {
    padding: 15px 0 20px 0;
    color: #555;
    line-height: 1.5;
    text-align: left;
}


/* ===================================== */
/* 9. FOOTER */
/* ===================================== */
.main-footer {
    background-color: var(--secondary-color);
    color: #ccc;
    padding: 50px 0;
}

.main-footer .footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-col {
    flex: 1;
}

.brand-info {
    max-width: 350px;
}

.footer-logo {
    height: 30px;
    margin-bottom: 5px;
}

.brand-name {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--light-text-color);
    margin-bottom: 5px;
}

.tagline {
    font-size: 0.9em;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.description {
    font-size: 0.9em;
    line-height: 1.5;
}

.footer-col h4 {
    color: var(--light-text-color);
    margin-bottom: 20px;
    font-size: 1.2em;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 0.95em;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-col p {
    margin-bottom: 10px;
    font-size: 0.95em;
}

.copyright {
    margin-top: 30px;
    font-size: 0.8em;
    color: #666;
}


/* ========================================================= */
/* 10. CASE STUDY SECTION - Estilos integrados */
/* ========================================================= */

.case-study-page {
    font-family: 'Montserrat', sans-serif;
    background-color: #f0f2f5;
    padding: 20px , 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    
}

.case-study-container {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 900px;
    padding: 30px;
    box-sizing: border-box;
}

/* Header del Case Study */
.case-study-container .header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.case-study-container .rocket-icon {
    font-size: 3em;
    margin-right: 15px;
    line-height: 1;
}

.case-study-container .header h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #333;
    font-size: 1.8em;
    margin: 0;
}

/* Contenido principal con diseño de dos columnas */
.case-study-container .content-area {
    display: flex;
    gap: 30px;
}

/* Sección de la imagen circular */
.case-study-container .image-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.case-study-container .image-wrapper {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.case-study-container .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sección de texto con timeline vertical */
.case-study-container .text-section {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    padding-left: 20px;
}

/* Línea vertical del timeline */
.case-study-container .text-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    bottom: 15px;
    width: 2px;
    background-color: #d1e7dd;
}

.case-study-container .point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    position: relative;
}

.case-study-container .number-circle {
    width: 35px;
    height: 35px;
    background-color: #efb810;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.1em;
    flex-shrink: 0;
    z-index: 1;
    position: relative;
    left: -28px;
}

.case-study-container .point h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #333;
    font-size: 1.3em;
    margin: 0;
    line-height: 1.2;
    text-align: left;
}

.case-study-container .point p {
    font-family: 'Roboto', sans-serif;
    color: #666;
    font-size: 0.95em;
    line-height: 1.6;
    margin-top: 5px;
}

/* Sección de descarga del PDF */
.case-study-container .download-section {
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    border-top: 1px solid #eee;
}

.case-study-container .download-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #efb810;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1em;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.1s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.case-study-container .download-button:hover {
    background-color: #d9a50e;
    transform: translateY(-1px);
}

.case-study-container .download-button:active {
    background-color: #c29209;
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


/* ===================================== */
/* MEDIA QUERIES (Responsividad) */
/* ===================================== */
@media (max-width: 992px) {
    h1 { font-size: 2.5em; }
    h2 { font-size: 2em; }
    
    /* 1. Hero Section */
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 50px 0;
    }
    .hero-text-area, .hero-image-popup {
        max-width: 100%;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-buttons .btn {
        flex: auto;
        padding: 12px 20px;
    }
    .retention-rate {
        text-align: center;
    }
    
    /* 2. Challenge Section */
    .challenge-grid {
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .challenge-card {
        max-width: 45%;
    }

    /* 3. Solution Section */
    .solution-content-grid {
        flex-direction: column;
        text-align: center;
    }
    .comparison-table {
        order: 2;
    }
    .solution-image-card {
        order: 1;
    }
    .comparison-table h3 {
        text-align: center;
    }

    /* 4. Why Choose Section */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .feature-card {
        min-height: 250px;
    }

    /* 5. How It Works Section */
    .timeline-container {
        flex-wrap: wrap;
        justify-content: center;
    }
    .timeline-container::before {
        display: none;
    }
    .timeline-step {
        width: 45%;
        margin-bottom: 30px;
    }
    .metrics-bar {
        flex-wrap: wrap;
    }
    .metric-item {
        width: 50%;
        margin-bottom: 15px;
    }
    
    /* 6. Testimonial Section */
    .testimonial-card {
        grid-template-areas: 
            "info info"
            "metrics metrics"
            "quote quote"
            "stats stats";
        grid-template-columns: 1fr;
    }
    .testimonial-metrics-desktop {
        text-align: center;
    }
    .reviewer-info {
        justify-content: center;
    }
    .testimonial-quote {
        text-align: center;
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #eee;
        padding-top: 20px;
    }
    
    /* 7. Contact Form Section */
    .form-grid {
        flex-direction: column;
    }
    .form-text-content, .contact-form-card {
        max-width: 100%;
    }
    .form-text-content h2, .subtitle-form {
        text-align: center;
    }
    .form-benefits {
        max-width: 500px;
        margin: 20px auto;
        text-align: left; 
    }
    .form-actions {
        flex-wrap: wrap; 
        justify-content: center;
    }
    .form-actions .btn-primary-form, 
    .form-actions .btn-secondary-outline {
        width: 100%;
        margin-bottom: 10px;
    }

    /* 10. Case Study Section */
    .case-study-container .content-area {
        flex-direction: column;
        align-items: center;
    }
/* Variables CSS para consistencia de color y fuente */
:root {
    --primary-color: #efb810; /* Naranja/Melocotón */
    --secondary-color: #000000; /* Azul Oscuro (el fondo de las secciones) */
    --text-color: #333;
    --light-text-color: #fff;
    --bg-light: #f9f9f9;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --heading-color: #333; /* Usado para encabezados en fondos claros */
}

/* Estilos Globales y Reset Básico */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

h1, h2, h3 {
    margin-bottom: 0.5em;
    font-weight: 700;
}

h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 0.2em;
}

section {
    padding: 50px 0;
}

.text-center {
    text-align: center;
}

.subtitle {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
}

/* --- Botones --- */
.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s, border-color 0.3s;
    text-decoration: none; /* CLAVE: Elimina el subrayado de los enlaces */
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-text-color);
}

.btn-primary:hover {
    background-color: #ffff00; /* Un poco más oscuro */
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--light-text-color);
    color: var(--light-text-color);
    padding: 10px 23px; /* Ajuste para el borde */
}

.btn-secondary-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 23px;
}

.btn-secondary-outline:hover {
    background-color: var(--primary-color);
    color: var(--light-text-color);
}

.btn-primary-alt {
    background-color: var(--secondary-color);
    color: var(--light-text-color);
}

.btn-primary-alt:hover {
    background-color: #ffff00;
}

/* --- Navbar (Header) --- */
.navbar {
    background-color: #fff;
    height: 72px;
    padding: 16px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    /* Aquí se asume que es una imagen o un texto estilizado */
    height: 40px; 
    width: auto;
}

.navbar .nav-links a {
    text-decoration: none;
    color: var(--text-color);
    margin: 0 16px;
    font-weight: 500;
    background-color: var(--primary-color);
    color: var(--light-text-color);
}

/* --- 1. Hero Section --- */
.hero-section {
    background: url("img/LandinghHero.jpg");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--secondary-color);
    color: var(--light-text-color);
    padding: 0;
}


.hero-content {
    padding: 80px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    background-position: center top;
    background-size: cover;
}

.hero-text-area {
    flex: 1;
    
}
.hero-text-area .highlight-text {
    /* Color de fondo: Usamos el color principal (amarillo/naranja) */
    background-color: var(--primary-color); 
    
    /* Color de texto: Un color oscuro para que contraste bien con el fondo claro */
    color: var(--secondary-color); /* Negro u otro color oscuro */
    
    font-weight: 700; /* Hace que el texto dentro sea más audaz */
    font-size: 0.9em; /* Puedes ajustar el tamaño de fuente si es necesario */
    
    /* Relleno (padding) para crear el espacio de la "caja" */
    padding: 5px 10px; /* Más padding para un efecto de caja más notorio */
    
    /* Bordes redondeados */
    border-radius: 6px; /* Bordes más redondeados para un aspecto de "chip" */
    
    /* Importante para que no rompa la línea y se ajuste al texto */
    display: inline-block; 
    
    /* Sombra de caja para darle profundidad */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Sombra suave para un efecto 3D */
    
    /* Alineación vertical para que se vea bien en la línea de texto */
    vertical-align: middle; 
}

.hero-text-area p {
    color: var(--light-text-color); 
    font-size: 1.1em;
    /*text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9); /* Sombra de texto para mejorar legibilidad del resto del párrafo */
}

.hero-content h1 {
    font-size: 3.5em;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-buttons {
    margin: 30px 0;
    display: flex;
    gap: 15px;
    align-items: center;
}

.hero-buttons .btn {
    flex: 1;
    text-align: center;
}

.retention-rate {
    font-weight: 600;
    font-size: 0.9em;
    color: var(--primary-color);
    margin-top: 15px;
}

.hero-image-popup {
    flex: 1;
    max-width: 450px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.popup-image-container {
    margin-bottom: 15px;
}

.popup-image {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    object-fit: cover;
    display: block;
  
}

.popup-info h4 {
    margin-bottom: 10px;
    color: var(--light-text-color);
}

.popup-checks span {
    display: inline-block;
    margin-right: 15px;
    font-size: 0.9em;
}

.popup-checks i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* --- 2. Challenge Section --- */
.challenge-section {
    padding: 80px 0;
    text-align: center;
}

.challenge-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.challenge-card {
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #ddd;
    flex: 1;
    max-width: 300px;
    text-align: left;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s; 
    cursor: pointer;
}

.challenge-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px); 
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--light-text-color);
}

.icon-circle.gold {
    background-color: var(--primary-color);
}
.icon-circle.orange {
    background-color: var(--primary-color);
}


/* --- 3. Solution Section (Comparison) --- */
.solution-section {
    background-color: #fff;
    padding-bottom: 80px;
}

.solution-content-grid {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    align-items: center;
}

.comparison-table {
    flex: 1.5;
}

.comparison-table h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: var(--heading-color);
    text-align: left;
}

.comparison-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 1.05em;
}

.comparison-row:last-child {
    border-bottom: none;
}

.label {
    font-weight: 600;
    color: var(--secondary-color);
}

.value-trad {
    color: #e74c3c; /* Rojo para lo tradicional */
    text-decoration: line-through;
    font-weight: 500;
    width: 30%;
    text-align: right;
}

.arrow {
    font-size: 1.2em;
    color: #bbb;
    margin: 0 10px;
}

.value-360.green {
    color: #efb810; /* Verde para la solución */
    font-weight: 700;
    width: 30%;
    text-align: left;
}

.solution-image-card {
    flex: 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.solution-image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.image-text {
    padding: 15px;
    background-color: var(--secondary-color);
    color: var(--light-text-color);
}
.image-text h4 {
    margin: 0;
    font-size: 1.2em;
}
.image-text p {
    font-size: 0.9em;
    margin-top: 5px;
}


/* --- 4. WHY CHOOSE SECTION (5 Cards) --- */
.why-choose-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.feature-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    border: 1px solid transparent;
    overflow: hidden;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.learn-more-text {
    display: block;
    margin-top: 15px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
}

/* Contenido de expansión (Hover Content) */
.feature-expansion {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    padding: 25px;
    border-radius: 8px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: opacity 0.3s, transform 0.3s, visibility 0s 0.3s;
    z-index: 10;
    text-align: left;
}

.feature-card:hover .feature-expansion {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transition: opacity 0.3s, transform 0.3s;
}

.feature-expansion ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.feature-expansion ul li {
    font-size: 0.9em;
    margin-bottom: 5px;
    display: flex;
    align-items: flex-start;
}

.feature-expansion ul li i {
    color: #efb810;
    margin-right: 8px;
    font-size: 0.9em;
    margin-top: 2px;
}

.feature-expansion .key-detail {
    display: block;
    font-size: 0.8em;
    background-color: #f0f0f0;
    color: #666;
    padding: 4px 8px;
    border-radius: 4px;
    margin-top: 5px;
    font-weight: 500;
}


/* --- 5. HOW IT WORKS SECTION (Timeline) --- */
.how-it-works-section {
    padding: 80px 0;
}

.timeline-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 40px 0;
    margin-bottom: 40px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 65px; /* Línea central */
    left: 10%;
    right: 10%;
    height: 3px;
    background-color: #ddd;
    z-index: 1;
}

.timeline-step {
    flex: 1;
    max-width: 25%;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-step .icon-circle {
    margin: 0 auto 20px auto;
    box-shadow: 0 0 0 8px #fff, 0 0 0 10px var(--primary-color);
}
/* ========================================================= */
/* --- 5.1 TIMELINE INTERACTION (HOVER) --- */
/* ========================================================= */

/* 1. Estilos Iniciales para el Contenido Extra (OCULTAR) */
.timeline-step .step-extra-info {
    /* Ocultar el contenido y eliminar su altura */
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    
    /* Configuración para la animación de deslizamiento */
    transition: max-height 0.5s ease-in-out, opacity 0.4s ease-in-out;
    
    /* Estilos de la caja (inicialmente el padding vertical es cero) */
    background-color: var(--light-bg-color, #f9f9f9); 
    border: 1px solid var(--border-color, #eee);
    border-radius: 4px;
    margin-top: 15px;
    padding: 0 15px; /* Padding vertical en 0 */
    
    font-size: 0.9em;
    line-height: 1.5;
}

/* 2. Estilos para el Efecto Hover (MOSTRAR) */
.timeline-step:hover .step-extra-info {
    /* Mostrar el contenido dándole una altura máxima grande */
    max-height: 300px; 
    opacity: 1;
    
    /* Restaurar el relleno para que el contenido se vea */
    padding: 15px; 
}

/* 3. Estilos de Resalte al hacer Hover (OPCIONAL) */
.timeline-step {
    transition: box-shadow 0.3s, background-color 0.3s;
    cursor: pointer;
}

.timeline-step:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08); 
}

/* ===================================== */
/* MEDIA QUERIES (Responsividad) */
/* ===================================== */
@media (max-width: 992px) {
    /* ... Ahora, aquí SÓLO estarán los estilos de responsividad ... */
}
.step-details {
    margin-top: 20px;
}

.step-title {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--secondary-color);
}

.days {
    color: #888;
    font-weight: 500;
    margin-left: 5px;
}

.step-extra-info {
    text-align: left;
    margin-top: 20px;
    padding: 15px;
    background-color: var(--bg-light);
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 0.9em;
    box-shadow: var(--box-shadow);
}

.step-extra-info ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.step-extra-info ul li {
    margin-bottom: 5px;
    display: flex;
    align-items: flex-start;
}

.step-extra-info ul li i {
    color: #efb810;
    margin-right: 8px;
    margin-top: 2px;
}

.metrics-bar {
    display: flex;
    justify-content: space-around;
    background-color: var(--secondary-color);
    color: var(--light-text-color);
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
}

.metric-item {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 2em;
    font-weight: 800;
    color: var(--primary-color);
}

.metric-label {
    font-size: 0.9em;
    color: #ccc;
    margin-top: 5px;
}

.small-text {
    font-size: 0.85em;
    color: #888;
    margin-top: 10px;
}


/* --- 6. TRUSTED BY GROWING COMPANIES (Testimonial) --- */
.testimonial-section {
    background-color: #fff;
    padding: 80px 0;
}

.testimonial-card {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    display: grid;
    grid-template-areas: 
        "info metrics"
        "quote metrics"
        "stats stats";
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.reviewer-info {
    grid-area: info;
    display: flex;
    align-items: center;
}

.reviewer-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.reviewer-title {
    font-size: 0.9em;
    color: #777;
}

.linkedin-link {
    color: #0077b5;
    text-decoration: none;
    font-size: 0.9em;
}

.testimonial-quote {
    grid-area: quote;
    font-size: 1.1em;
    font-style: italic;
    color: var(--text-color);
    border-left: 3px solid var(--primary-color);
    padding-left: 15px;
}

.testimonial-metrics-desktop {
    grid-area: metrics;
}

.metrics-box {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.metrics-title {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.metric-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 0.9em;
}

.metric-value.green {
    font-weight: 600;
    color: #2ecc71;
}

.testimonial-stats {
    grid-area: stats;
    display: flex;
    justify-content: space-around;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.stat-item {
    text-align: center;
}

.stat-value.orange {
    font-size: 1.8em;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    display: block;
    font-size: 0.9em;
    color: #555;
    margin-top: 5px;
}

.testimonial-pagination {
    text-align: center;
    margin-top: 20px;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #ddd;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background-color: var(--primary-color);
}


/* ===================================== */
/* 7. CONTACT FORM (3 PASOS) - Multistep Form Styles */
/* ===================================== */

.contact-form-section {
    padding: 100px 0;
    background-color: var(--secondary-color); 
    color: white;
}

.form-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.form-text-content {
    flex: 1;
    max-width: 50%;
}

.form-text-content h2 {
    color: white;
    font-size: 2.2em;
    margin-bottom: 10px;
    text-align: left; 
}

.subtitle-form {
    color: #ccc;
    font-size: 1.1em;
    margin-bottom: 30px;
    text-align: left;
}

.form-benefits {
    margin-top: 20px;
}

.form-benefits p {
    margin-bottom: 15px;
    font-size: 1.05em;
    font-weight: 600;
}

.form-benefits ul {
    list-style: none;
    padding: 0;
}

.form-benefits ul li {
    font-size: 1em;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.form-benefits ul li i {
    color: #efb810; 
    margin-right: 10px;
    margin-top: 3px;
}

/* --- Tarjeta del Formulario --- */
.contact-form-card {
    flex: 1;
    max-width: 50%;
    background-color: #fff; 
    color: var(--text-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-top: 5px solid var(--primary-color);
}

.contact-form-card h3 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.5em;
    color: var(--secondary-color);
}

/* --- Barra de Progreso (Multi-step) --- */
.form-progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.step-indicator {
    flex: 1;
    text-align: center;
    font-size: 0.9em;
    font-weight: 600;
    color: #bbb;
    position: relative;
    padding-bottom: 15px;
}

.step-indicator.active {
    color: var(--primary-color);
}

.step-indicator::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #eee;
}

.step-indicator.active::after {
    background-color: var(--primary-color);
}

/* --- Contenido de los Pasos --- */
.form-step {
    display: none;
    animation: fadeIn 0.4s ease-out; 
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 0.9em;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    background-color: #fcfcfc;
    color: var(--text-color);
    transition: border-color 0.2s;
}

/* --- Botones del Formulario --- */
.btn-primary-form {
    width: 100%;
    padding: 15px; 
    border: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.1em;
    margin-top: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    background-color: var(--primary-color);
    color: var(--light-text-color);
}

.btn-primary-form:hover {
    background-color: #e67a3a; 
}

.form-disclaimer {
    text-align: center;
    font-size: 0.8em;
    color: #999;
    margin-top: 15px;
}

/* Acciones (Botones de Atrás/Siguiente en el Paso 2) */
.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
}

.form-actions .btn-primary-form {
    width: 60%;
    margin: 0;
}
.form-actions .btn-secondary-outline {
    width: 40%;
    margin: 0;
}

.contact-form-card .btn-secondary-outline {
    background-color: #f0f0f0;
    color: var(--text-color);
    border: 1px solid #ddd;
    padding: 12px 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: center;
    line-height: 1.5; 
}
.contact-form-card .btn-secondary-outline:hover {
    background-color: #e0e0e0;
}

/* ===================================== */
/* 9. FOOTER */
/* ===================================== */
.main-footer {
    background-color: var(--secondary-color);
    color: #ccc;
    padding: 50px 0;
}

.main-footer .footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-col {
    flex: 1;
}

.brand-info {
    max-width: 350px;
}

.footer-logo {
    height: 30px;
    margin-bottom: 5px;
}

.brand-name {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--light-text-color);
    margin-bottom: 5px;
}

.tagline {
    font-size: 0.9em;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.description {
    font-size: 0.9em;
    line-height: 1.5;
}

.footer-col h4 {
    color: var(--light-text-color);
    margin-bottom: 20px;
    font-size: 1.2em;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 0.95em;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-col p {
    margin-bottom: 10px;
    font-size: 0.95em;
}

.copyright {
    margin-top: 30px;
    font-size: 0.8em;
    color: #666;
}


/* ========================================================= */
/* 10. CASE STUDY SECTION - Estilos integrados */
/* ========================================================= */

.case-study-page {
    font-family: 'Montserrat', sans-serif;
    background-color: #f0f2f5;
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

.case-study-container {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 900px;
    padding: 0px;
    box-sizing: border-box;
}

/* Header del Case Study */
.case-study-container .header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.case-study-container .rocket-icon {
    font-size: 3em;
    margin-right: 15px;
    line-height: 1;
}

.case-study-container .header h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #333;
    font-size: 1.8em;
    margin: 0;
}

/* Contenido principal con diseño de dos columnas */
.case-study-container .content-area {
    display: flex;
    gap: 30px;
}

/* Sección de la imagen circular */
.case-study-container .image-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.case-study-container .image-wrapper {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.case-study-container .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sección de texto con timeline vertical */
.case-study-container .text-section {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    padding-left: 20px;
}

/* Línea vertical del timeline */
.case-study-container .text-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    bottom: 15px;
    width: 2px;
    background-color: #d1e7dd;
}

.case-study-container .point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    position: relative;
}

.case-study-container .number-circle {
    width: 35px;
    height: 35px;
    background-color: #efb810;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.1em;
    flex-shrink: 0;
    z-index: 1;
    position: relative;
    left: -28px;
}

.case-study-container .point h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #333;
    font-size: 1.3em;
    margin: 0;
    line-height: 1.2;
    text-align: left;
}

.case-study-container .point p {
    font-family: 'Roboto', sans-serif;
    color: #666;
    font-size: 0.95em;
    line-height: 1.6;
    margin-top: 5px;
}

/* Sección de descarga del PDF */
.case-study-container .download-section {
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    border-top: 1px solid #eee;
}

.case-study-container .download-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #efb810;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1em;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.1s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.case-study-container .download-button:hover {
    background-color: #d9a50e;
    transform: translateY(-1px);
}

.case-study-container .download-button:active {
    background-color: #c29209;
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


/* ===================================== */
/* MEDIA QUERIES (Responsividad) */
/* ===================================== */
@media (max-width: 992px) {
    h1 { font-size: 2.5em; }
    h2 { font-size: 2em; }
    
    /* 1. Hero Section */
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 50px 0;
    }
    .hero-text-area, .hero-image-popup {
        max-width: 100%;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-buttons .btn {
        flex: auto;
        padding: 12px 20px;
    }
    .retention-rate {
        text-align: center;
    }
    
    /* 2. Challenge Section */
    .challenge-grid {
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .challenge-card {
        max-width: 45%;
    }

    /* 3. Solution Section */
    .solution-content-grid {
        flex-direction: column;
        text-align: center;
    }
    .comparison-table {
        order: 2;
    }
    .solution-image-card {
        order: 1;
    }
    .comparison-table h3 {
        text-align: center;
    }

    /* 4. Why Choose Section */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .feature-card {
        min-height: 250px;
    }

    /* 5. How It Works Section */
    .timeline-container {
        flex-wrap: wrap;
        justify-content: center;
    }
    .timeline-container::before {
        display: none;
    }
    .timeline-step {
        width: 45%;
        margin-bottom: 30px;
    }
    .metrics-bar {
        flex-wrap: wrap;
    }
    .metric-item {
        width: 50%;
        margin-bottom: 15px;
    }
    
    /* 6. Testimonial Section */
    .testimonial-card {
        grid-template-areas: 
            "info info"
            "metrics metrics"
            "quote quote"
            "stats stats";
        grid-template-columns: 1fr;
    }
    .testimonial-metrics-desktop {
        text-align: center;
    }
    .reviewer-info {
        justify-content: center;
    }
    .testimonial-quote {
        text-align: center;
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #eee;
        padding-top: 20px;
    }
    
    /* 7. Contact Form Section */
    .form-grid {
        flex-direction: column;
    }
    .form-text-content, .contact-form-card {
        max-width: 100%;
    }
    .form-text-content h2, .subtitle-form {
        text-align: center;
    }
    .form-benefits {
        max-width: 500px;
        margin: 20px auto;
        text-align: left; 
    }
    .form-actions {
        flex-wrap: wrap; 
        justify-content: center;
    }
    .form-actions .btn-primary-form, 
    .form-actions .btn-secondary-outline {
        width: 100%;
        margin-bottom: 10px;
    }

    /* 10. Case Study Section */
    .case-study-container .content-area {
        flex-direction: column;
        align-items: center;
    }

    .case-study-container .image-section {
        margin-bottom: 30px;
    }

    .case-study-container .text-section {
        padding-left: 0;
    }

    .case-study-container .text-section::before {
        display: none;
    }

    .case-study-container .number-circle {
        left: 0;
    }
}

@media (max-width: 768px) {
    /* Ajustes generales */
    .container {
        width: 95%;
    }
    
    h1 { font-size: 2em; }
    h2 { font-size: 1.8em; }
    
    /* Navbar */
    .navbar .nav-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .navbar .nav-links a {
        margin: 5px 0;
    }
    
    /* Challenge cards */
    .challenge-card {
        max-width: 100%;
    }
    
    /* Features grid */
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Timeline */
    .timeline-step {
        width: 100%;
        max-width: 100%;
    }
    
    /* Testimonial */
    .testimonial-card {
        padding: 25px;
    }
    
    .reviewer-photo {
        width: 60px;
        height: 60px;
    }
    
    /* Footer */
    .main-footer .footer-grid {
        flex-direction: column;
        gap: 30px;
    }
    
    .brand-info {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    /* Tipografía móvil */
    body {
        font-size: 14px;
    }
    
    h1 { font-size: 1.8em; }
    h2 { font-size: 1.5em; }
    h3 { font-size: 1.2em; }
    
    .subtitle {
        font-size: 1em;
    }
    
    /* Botones móviles */
    .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    
    /* Hero section móvil */
    .hero-content h1 {
        font-size: 2em;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    /* Challenge cards móvil */
    .challenge-grid {
        flex-direction: column;
    }
    
    .challenge-card {
        max-width: 100%;
        padding: 20px;
    }
    
    /* Solution section móvil */
    .comparison-row {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    .value-trad, .value-360.green {
        width: 100%;
        text-align: left;
    }
    
    .arrow {
        transform: rotate(90deg);
        margin: 5px 0;
    }
    
    /* Metrics bar móvil */
    .metrics-bar {
        flex-direction: column;
        padding: 20px;
    }
    
    .metric-item {
        width: 100%;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .metric-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }
    
    .metric-value {
        font-size: 1.5em;
    }
    
    /* Testimonial móvil */
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-value.orange {
        font-size: 1.5em;
    }
    
    /* Form móvil */
    .contact-form-card {
        padding: 20px;
    }
    
    .form-progress-bar {
        font-size: 0.8em;
    }
    
    .step-indicator {
        padding-bottom: 10px;
    }
    
    /* FAQ móvil */
    .faq-search-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .faq-tabs .tab {
        display: block;
        margin: 5px 0;
    }
    
    .accordion-header {
        font-size: 0.9em;
        padding: 15px;
    }
    
    /* Footer móvil */
    .main-footer {
        padding: 30px 0;
    }
    
    .footer-col h4 {
        font-size: 1.1em;
    }
    
    /* Case Study móvil */
    .case-study-container {
        padding: 20px;
    }

    .case-study-container .header {
        flex-direction: column;
        text-align: center;
    }
    
    .case-study-container .rocket-icon {
        font-size: 2.5em;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .case-study-container .header h1 {
        font-size: 1.5em;
    }

    .case-study-container .point h2 {
        font-size: 1.1em;
    }

    .case-study-container .point p {
        font-size: 0.9em;
    }
    
    .case-study-container .image-wrapper {
        max-width: 280px;
    }
    
    .case-study-container .download-button {
        width: 100%;
        padding: 15px;
    }
}

@media (max-width: 360px) {
    /* Pantallas muy pequeñas */
    body {
        font-size: 13px;
    }
    
    h1 { font-size: 1.6em; }
    h2 { font-size: 1.3em; }
    
    .container {
        width: 100%;
        padding: 0 10px;
    }
    
    .hero-content {
        padding: 30px 0;
    }
    
    .hero-content h1 {
        font-size: 1.8em;
    }
    
    .challenge-card,
    .feature-card,
    .testimonial-card,
    .contact-form-card {
        padding: 15px;
    }
    
    .case-study-container {
        padding: 15px;
    }
    
    .case-study-container .image-wrapper {
        max-width: 250px;
    }
}
    .case-study-container .image-section {
        margin-bottom: 30px;
    }

    .case-study-container .text-section {
        padding-left: 0;
    }

    .case-study-container .text-section::before {
        display: none;
    }

    .case-study-container .number-circle {
        left: 0;
    }
}

@media (max-width: 480px) {
    .case-study-container {
        padding: 20px;
    }

    .case-study-container .header h1 {
        font-size: 1.5em;
    }

    .case-study-container .rocket-icon {
        font-size: 2.5em;
    }

    .case-study-container .point h2 {
        font-size: 1.1em;
    }

    .case-study-container .point p {
        font-size: 0.9em;
    }
}/* End custom CSS */