* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --text-color: #1a1a1a;
    --light-gray: #f8f8f8;
    --medium-gray: #e8e8e8;
    --border-color: #d0d0d0;
    --accent-gray: #f0f0f0;
    --verde-azulado-oscuro: #224E54;
    --azul-pizarra: #5980A1;
    --fondo-marco: #D5E4D4;
    --borde-rama: #C2A476;
    --blanco-principal: #FFFFFF;
    --blanco-secundario: #E4EAE4;
    --azul-claro: #7FB2E5;
    --amarillo: #FFD54F;
    --amarillo-suave: #FDF18C;
    --blanco: #FFFFFF;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: var(--blanco-principal);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    justify-content: center;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center; /* Centrar contenido interno */
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-link:hover .logo-img {
    transform: scale(1.05);
}

.header-brand-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.header-brand-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--verde-azulado-oscuro);
    letter-spacing: -0.5px;
    font-family: 'Playfair Display', serif;
    transition: all 0.3s ease;
}

.header-brand-tagline {
    font-size: 16px; /* Aumentado de 14px */
    font-weight: 700;
    color: var(--verde-azulado-oscuro);
    letter-spacing: 0.8px; /* Ligeramente más espaciado */
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    line-height: 1.2;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px; /* Más espacio entre estrofas */
}

.tagline-divider {
    color: var(--borde-rama);
    opacity: 0.8; /* Más visible */
    font-weight: 400;
    font-size: 18px; /* Divisor más grande */
}

@media (max-width: 768px) {
    .header-brand-tagline {
        flex-direction: column;
        gap: 6px;
        font-size: 12px; /* Aumentado de 10px en móvil */
        padding: 8px 0;
    }
    
    .tagline-divider {
        display: none;
    }
}

.logo-link:hover .header-brand-name {
    color: var(--borde-rama);
}

.header-nav {
    display: none;
    align-items: center;
    gap: 30px;
    margin-left: auto;
}

.nav-link {
    color: var(--verde-azulado-oscuro);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: var(--borde-rama);
    border-bottom-color: var(--borde-rama);
}

.nav-cta-btn {
    background: var(--borde-rama);
    color: var(--blanco-principal);
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(194, 164, 118, 0.3);
    text-decoration: none; /* Eliminar subrayado */
}

.nav-cta-btn:hover {
    background: #b39468;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(194, 164, 118, 0.4);
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--verde-azulado-oscuro);
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
}

/* Adjust body for fixed header */
body {
    padding-top: 70px;
}

/* Hero Section */
.hero {
    padding: 40px 0 0 0;
    background: linear-gradient(to bottom, #D5E4D4 0%, #E8F1F8 30%, #F0F5FA 60%, #FFFFFF 100%);
    color: var(--blanco-principal);
    position: relative;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.subtitle-confirmed {
    font-size: 14px;
    color: var(--blanco-principal);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--verde-azulado-oscuro);
    padding: 8px 16px;
    border-radius: 6px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.checkmark {
    background-color: var(--verde-azulado-oscuro);
    color: var(--blanco-principal);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.hero-main-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--verde-azulado-oscuro);
    line-height: 1.3;
    letter-spacing: -0.5px;
    font-family: 'Playfair Display', serif;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--verde-azulado-oscuro);
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.hero-small-text {
    font-size: 14px;
    color: var(--verde-azulado-oscuro);
    margin-bottom: 40px;
    margin-top: -30px;
    opacity: 0.9;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.hero-bullet-points {
    list-style: none;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.hero-bullet-points li {
    font-size: 14px;
    color: var(--verde-azulado-oscuro);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.hero-bullet-points li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--borde-rama);
    font-weight: bold;
    font-size: 16px;
}

.arrow-down {
    display: flex;
    justify-content: center;
    margin: 10px 0;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

.hero-title {
    font-size: 32px;
    font-weight: 900;
    margin: 15px 0;
    color: var(--blanco-principal);
    letter-spacing: -0.5px;
}

.video-container {
    margin: 0 auto;
    margin-bottom: 10px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
                0 10px 30px rgba(0, 0, 0, 0.3),
                0 5px 15px rgba(0, 0, 0, 0.2);
    max-width: 900px;
    position: relative;
    z-index: 10;
    border: 2px solid var(--borde-rama);
    background: #000;
}

.video-container video {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: bottom;
    border-radius: 10px;
}

.video-sound-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(34, 78, 84, 0.9);
    color: var(--blanco-principal);
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    z-index: 30;
    letter-spacing: 0.5px;
}

.video-sound-btn:hover {
    background: rgba(34, 78, 84, 1);
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 8px 24px rgba(34, 78, 84, 0.4);
}

.video-sound-btn svg {
    width: 20px;
    height: 20px;
}

.video-sound-btn.active {
    background: rgba(34, 114, 255, 0.9);
}

.video-sound-btn.active:hover {
    background: rgba(34, 114, 255, 1);
    transform: translate(-50%, -50%) scale(1.05);
}

.hero-description {
    font-size: 22px;
    color: #000000;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    line-height: 1.6;
}

/* CTA Button */
.cta-button {
    background-color: var(--verde-azulado-oscuro);
    color: var(--blanco-principal);
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-decoration: none; /* Eliminar subrayado */
    display: inline-block;
}

.cta-button:hover {
    background-color: #1a3a42;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(34, 78, 84, 0.3);
}

.cta-button:active {
    transform: translateY(0);
}

/* Main Content Section */
.main-content {
    padding: 100px 0 60px 0;
    background-color: #ffffff;
    color: #000000;
    text-align: center;
}

.main-content .hero-title {
    color: #000000;
    font-size: 36px;
}

.main-content .hero-description {
    color: #666666;
}

.main-content .cta-button {
    background-color: var(--verde-azulado-oscuro);
    color: var(--blanco-principal);
}

.main-content .cta-button:hover {
    background-color: #1a3a42;
}

.main-headline {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #000000;
    line-height: 1.3;
    font-family: 'Playfair Display', serif;
}

.main-subheadline {
    font-size: 18px;
    color: #333333;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.bullet-points {
    list-style: none !important;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.bullet-points li {
    font-size: 16px;
    color: #000000;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    text-align: left;
    display: block;
    margin-left: 120px;
}

.bullet-points li:before {
    content: "✓ ";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--verde-azulado-oscuro);
    font-weight: bold;
    font-size: 18px;
}

.cta-button-purple {
    background-color: var(--verde-azulado-oscuro) !important;
    color: var(--blanco-principal) !important;
    display: inline-block;
    margin-left: auto;
    margin-right: 0;
}

.cta-button-purple:hover {
    background-color: #1a3a42 !important;
}

.download-btn {
    background: var(--verde-azulado-oscuro);
    color: var(--blanco-principal);
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 0px auto;
    box-shadow: 0 4px 15px rgba(34, 78, 84, 0.3);
    text-decoration: none; /* Eliminar subrayado */
}

.download-btn:hover {
    background: #1a3a42;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 78, 84, 0.4);
}

.hero-buttons-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 30px 0 20px 0;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(194, 164, 118, 0.4), 
                    0 2px 8px rgba(0, 0, 0, 0.15),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 0 10px 40px rgba(194, 164, 118, 0.6), 
                    0 2px 8px rgba(0, 0, 0, 0.15),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

.hero-download-btn {
    background: linear-gradient(135deg, #224E54 0%, #2d6b75 100%);
    color: var(--blanco-principal);
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 25px rgba(34, 78, 84, 0.35), 
                0 2px 8px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 10;
    text-decoration: none;
    overflow: hidden;
    animation: slideInUp 0.6s ease-out 0.1s both;
}

.hero-download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hero-download-btn:hover::before {
    left: 100%;
}

.hero-download-btn:hover {
    background: linear-gradient(135deg, #1a3a40 0%, #224E54 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(34, 78, 84, 0.45), 
                0 4px 12px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-download-btn:active {
    transform: translateY(-2px) scale(0.98);
}

.hero-buttons-container .hero-download-btn:nth-of-type(2) {
    background: linear-gradient(135deg, #5980A1 0%, #4a6a8a 100%);
    animation: slideInUp 0.6s ease-out 0.2s both;
}

.hero-buttons-container .hero-download-btn:nth-of-type(2):hover {
    background: linear-gradient(135deg, #4a6a8a 0%, #3d5573 100%);
    box-shadow: 0 12px 35px rgba(89, 128, 161, 0.45), 
                0 4px 12px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-call-btn {
    background: linear-gradient(135deg, var(--borde-rama) 0%, #d4b896 100%);
    color: var(--blanco-principal);
    padding: 18px 44px;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 30px rgba(194, 164, 118, 0.4), 
                0 2px 8px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 10;
    text-decoration: none;
    overflow: hidden;
    animation: glowPulse 3s ease-in-out infinite;
}

.hero-call-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.hero-call-btn:hover::before {
    left: 100%;
}

.hero-call-btn:hover {
    background: linear-gradient(135deg, #d4b896 0%, #c9a876 100%);
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 40px rgba(194, 164, 118, 0.5), 
                0 4px 12px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
    animation: none;
}

.hero-call-btn:active {
    transform: translateY(-2px) scale(0.98);
}

.hero-calendly-btn {
    background: var(--borde-rama);
    color: var(--blanco-principal);
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 80px auto 40px; /* Aumentado el margen superior para bajar el botón */
    box-shadow: 0 4px 15px rgba(194, 164, 118, 0.3);
    position: relative;
    z-index: 10;
    text-decoration: none;
    width: fit-content;
}

.hero-calendly-btn:hover {
    background: #b39468;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(194, 164, 118, 0.4);
}

.trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 20px 0 10px 0;
    font-size: 14px;
    color: var(--verde-azulado-oscuro);
    flex-wrap: wrap;
}

.trust-item {
    font-weight: 500;
}

.trust-number {
    font-weight: 700;
    color: var(--borde-rama);
    animation: countUp 2s ease-out 0.5s forwards;
}

@keyframes countUp {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.trust-divider {
    color: var(--verde-azulado-oscuro);
    font-weight: 300;
    opacity: 0.7;
}

/* Urgency Section */
.urgency-section {
    padding: 80px 0;
    background-color: #ffffff;
    color: #000000;
    box-shadow: inset 0 -100px 100px -80px rgba(46, 92, 138, 0.1);
}

.urgency-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.urgency-title {
    font-size: 40px;
    font-weight: 900;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.urgency-text {
    font-size: 18px;
    color: #333333;
    margin-bottom: 50px;
    line-height: 1.6;
}

.urgency-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.urgency-not-for,
.urgency-for {
    text-align: left;
    padding: 30px;
    border-radius: 12px;
    background-color: #f9f9f9;
}

.urgency-not-for {
    border-left: 4px solid #e74c3c;
}

.urgency-for {
    border-left: 4px solid #3498DB;
}

.urgency-subtitle {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.urgency-list {
    list-style: none;
    margin: 0;
}

.urgency-list li {
    font-size: 16px;
    color: #000000;
    padding-left: 30px;
    position: relative;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.6;
}

.urgency-list li:last-child {
    margin-bottom: 0;
}

.urgency-list-negative li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
    font-size: 18px;
}

.urgency-list-positive li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498DB;
    font-weight: bold;
    font-size: 18px;
}

@media (max-width: 768px) {
    .urgency-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .urgency-title {
        font-size: 28px;
    }
}

/* Final CTA Section */
.final-cta-section {
    padding: 80px 0;
    background-color: #ffffff;
    color: #000000;
    box-shadow: inset 0 -100px 100px -80px rgba(46, 92, 138, 0.1);
}

@media (max-width: 768px) {
    .social-proof-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .social-proof-title {
        white-space: normal;
    }
}

@media (max-width: 768px) {
    .social-proof-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .social-proof-image-container {
        height: 300px;
    }
}


/* Calendly Widget Customization */
.calendly-inline-widget {
    max-width: 100% !important;
}

/* Hide Calendly branding if possible */
.calendly-badge {
    display: none !important;
}

.booking-kit_logo-container_39b65c89 {
    display: none !important;
}


/* SECTION 6: FINAL CTA */
.final-cta-section {
    padding: 20px 0;
    background: linear-gradient(to bottom, #D5E4D4 0%, #E8F1F8 100%);
    color: #000000;
    text-align: center;
}

.final-cta-label {
    font-size: 14px;
    font-weight: 600;
    color: #7FB2E5;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.final-cta-title {
    font-size: 42px;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-body {
    font-size: 18px;
    color: #333333;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-btn {
    background: linear-gradient(135deg, #2272FF 0%, #1a5cdb 100%);
    color: white;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 50px;
    box-shadow: 0 4px 15px rgba(34, 114, 255, 0.3);
    text-decoration: none; /* Eliminar subrayado */
}

.final-cta-btn:hover {
    background: linear-gradient(135deg, #1a5cdb 0%, #1347a8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 114, 255, 0.4);
}

.final-cta-calendar {
    display: flex;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .final-cta-title {
        font-size: 32px;
    }
    
    .final-cta-body {
        font-size: 16px;
    }
}

/* ===== SECTION 2: CREDIBILITY & TESTIMONIALS ===== */
.credibility-section {
    padding: 40px 0 40px;
    background: linear-gradient(to bottom, #FFFFFF 0%, #5980A1 50%, #FFFFFF 100%);
    color: #000000;
}

.credibility-label-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.credibility-label-line {
    flex: 0 1 80px;
    height: 2px;
    background: linear-gradient(to right, transparent, #5980A1, transparent);
}

.credibility-label {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #5980A1 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
    display: block;
    opacity: 1;
    white-space: nowrap;
}

.credibility-title {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.credibility-body {
    text-align: center;
    font-size: 18px;
    color: #333333;
    font-weight: 600;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.credibility-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columnas en una sola línea */
    gap: 20px;
    max-width: 1200px; /* Más ancho para que se visualicen mejor */
    margin: 0 auto;
}

.credibility-item {
    display: flex;
    flex-direction: column;
    gap: 25px;
    min-height: 600px; /* Aumentado de 550px para acomodar la imagen más alta */
}

.credibility-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: #ffffff;
    max-height: 400px; /* Aumentado de 250px */
    width: 100%;
    aspect-ratio: 4 / 5; /* Cambiado de 16/9 para ser más alto (retrato) */
}

.credibility-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.credibility-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 30%;
    background-color: #f9f9f9;
    transition: opacity 0.5s ease-in-out;
}

.credibility-quote {
    font-size: 14px;
    color: #333333;
    line-height: 1.6;
    font-style: italic;
    text-align: center;
    padding: 30px 15px;
}

.credibility-cta-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -30px;
    padding-top: 0;
}

.credibility-cta-btn {
    background: var(--borde-rama);
    color: var(--blanco-principal);
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(194, 164, 118, 0.3);
    text-decoration: none;
}

.credibility-cta-btn:hover {
    background: #b39468;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(194, 164, 118, 0.4);
}

/* Image Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(255, 255, 255, 0.4); /* Fondo traslúcido/transparente claro */
    backdrop-filter: blur(15px); /* Más desenfoque para efecto traslúcido elegante */
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 800px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

.modal-close {
    position: absolute;
    top: 5px; /* Subido de 10px a 5px */
    right: 15px; /* Movido un poco más a la derecha de 20px a 15px */
    color: #2272FF; /* Un azul más intenso/vibrante */
    font-size: 35px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    text-shadow: none;
}

.modal-close:hover,
.modal-close:focus {
    color: #1a5cdb; /* Azul más oscuro al pasar el mouse */
    transform: scale(1.1);
}

.modal-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #1a1a1a; /* Texto oscuro para que se vea sobre el amarillo */
    padding: 20px 0;
    font-style: italic;
    font-size: 20px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .credibility-grid {
        grid-template-columns: repeat(2, 1fr); /* 2x2 en modo responsive */
        gap: 20px;
    }
    
    .credibility-title {
        font-size: 32px;
    }
}

/* ===== SECTION 4: BOOK A CALL ===== */
.book-call-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #FFFFFF 0%, #C2A476 50%, #FFFFFF 100%);
    color: #000000;
}

.book-call-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: center;
}

/* Instagram Carousel/Video */
.instagram-carousel {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.instagram-video-container {
    position: relative;
    width: 100%;
    padding-top: 133%; /* Ajustado para videos verticales (9:16) */
    background: #000000;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.instagram-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

.instagram-video-sound-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(34, 78, 84, 0.9);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    z-index: 100;
}

.instagram-video-sound-btn:hover {
    background: rgba(34, 78, 84, 1);
    transform: translate(-50%, -50%) scale(1.05);
}

.instagram-video-sound-btn svg {
    width: 28px;
    height: 28px;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.carousel-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-image.active {
    opacity: 1;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(127, 178, 229, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #7FB2E5;
    transform: scale(1.2);
}

.dot:hover {
    background-color: #7FB2E5;
}

/* Book Call Content */
.book-call-content {
    text-align: center;
}

.book-call-content .container {
    padding: 0;
}

.book-call-label {
    font-size: 14px;
    font-weight: 600;
    color: #7FB2E5;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.book-call-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.book-call-body {
    font-size: 18px;
    color: #333333;
    margin-bottom: 40px;
    line-height: 1.6;
}

.book-call-cta-btn {
    background: linear-gradient(135deg, #2272FF 0%, #1a5cdb 100%);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(34, 114, 255, 0.3);
    text-decoration: none;
}

.book-call-cta-btn:hover {
    background: linear-gradient(135deg, #1a5cdb 0%, #1347a8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 114, 255, 0.4);
}

@media (max-width: 768px) {
    .book-call-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .instagram-carousel {
        max-width: 300px;
    }

    .book-call-title {
        font-size: 32px;
    }

    .book-call-body {
        font-size: 16px;
    }
}

/* ===== SECTION 5: FAQ ===== */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #FDFBF7 0%, #FFFFFF 100%);
    color: #000000;
}

.faq-section .faq-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 50px;
    text-align: center;
    color: #5980A1;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.faq-section .faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-section .faq-item {
    margin-bottom: 20px;
    border: 1px solid #5980A1;
    border-radius: 8px;
    overflow: hidden;
    background: #E8F4FF;
    transition: all 0.3s ease;
}

.faq-section .faq-item.active {
    background: #FDF18C;
    border-color: #FFD54F;
}

.faq-section .faq-question {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    transition: all 0.3s ease;
    text-align: left;
}

.faq-section .faq-question:hover {
    background-color: rgba(89, 128, 161, 0.2);
}

.faq-section .faq-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
    color: #5980A1;
}

.faq-section .faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-section .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-section .faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 20px;
}

.faq-section .faq-answer p {
    margin-bottom: 0;
    color: #666666;
    font-size: 15px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .faq-section .faq-title {
        font-size: 32px;
    }
}

/* ===== SECTION 4: RESULTS ===== */
.results-section {
    padding: 20px 0; /* Aún más acotado */
    background: linear-gradient(to bottom, var(--blanco-principal) 0%, var(--azul-pizarra) 50%, var(--verde-azulado-oscuro) 100%);
    color: var(--blanco-principal);
}

.results-title {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 15px; /* Reducido de 25px */
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.result-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 10px; /* Reducido de 30px/20px */
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.result-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.results-logo {
    display: flex;
    justify-content: center;
    margin-top: 20px; /* Reducido de 70px */
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.results-logo-img {
    max-width: 200px;
    height: auto;
    filter: brightness(1.1) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.results-logo-img:hover {
    transform: scale(1.05);
    filter: brightness(1.2) drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
}

.result-number {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 10px;
    color: #FFD54F;
}

.result-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--blanco-principal);
    line-height: 1.4;
}

/* ===== SECTION 5: GUIDE ===== */
.guide-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--fondo-marco) 0%, var(--blanco-principal) 100%);
    color: #000000;
}

.guide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.guide-left {
    display: flex;
    justify-content: center;
}

.guide-carousel {
    width: 100%;
    max-width: 350px;
}

.guide-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.guide-carousel-track {
    display: flex;
    animation: slideGuide 12s ease-in-out infinite;
    width: 100%;
}

@keyframes slideGuide {
    0% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(0);
    }
    30% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(-100%);
    }
    55% {
        transform: translateX(-200%);
    }
    75% {
        transform: translateX(-200%);
    }
    80% {
        transform: translateX(-300%);
    }
    100% {
        transform: translateX(-300%);
    }
}

.guide-carousel-item {
    flex: 0 0 100%;
    min-width: 100%;
}

.guide-carousel-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.guide-image {
    width: 100%;
    max-width: 350px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.guide-title {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.guide-bullets {
    list-style: none;
    margin-bottom: 40px;
}

.guide-bullets li {
    font-size: 15px;
    color: #1a1a1a;
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 1.6;
}

.guide-bullets li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #7FB2E5;
    font-weight: bold;
    font-size: 18px;
}

.guide-cta {
    background: linear-gradient(135deg, #7FB2E5 0%, #5a8fc4 100%);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(127, 178, 229, 0.3);
}

.guide-cta:hover {
    background: linear-gradient(135deg, #5a8fc4 0%, #3d6ba3 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(127, 178, 229, 0.4);
}

@media (max-width: 768px) {
    .guide-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ===== SECTION 6: PROCESS ===== */
.process-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--fondo-marco) 0%, var(--blanco-principal) 100%);
    color: #000000;
}

.process-title {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.process-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px 30px;
    border-radius: 12px;
    border-top: 4px solid #7FB2E5;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-top-color: #1a1a1a;
}

.process-number {
    font-size: 48px;
    font-weight: 900;
    color: #7FB2E5;
    margin-bottom: 15px;
    display: block;
}

.process-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.5;
}

.process-bottom {
    text-align: center;
    font-size: 18px;
    color: #1a1a1a;
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
}

.process-cta-btn {
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%);
    color: #1a1a1a;
    padding: 14px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 30px auto 0;
    box-shadow: 0 4px 15px rgba(255, 213, 79, 0.3);
}

.process-cta-btn:hover {
    background: linear-gradient(135deg, #FFC107 0%, #FFB300 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 213, 79, 0.4);
}

/* ===== SECTION 8: FINAL CLOSE ===== */
.final-close-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.final-close-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.final-close-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.final-close-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 29, 29, 0.95) 0%, rgba(29, 29, 29, 0.85) 100%);
    z-index: 2;
}

.final-close-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.final-close-label {
    font-size: 14px;
    font-weight: 600;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.final-close-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.final-close-body {
    font-size: 18px;
    color: #d1d5db;
    margin-bottom: 40px;
    line-height: 1.8;
}

.final-close-cta {
    background: linear-gradient(135deg, #7FB2E5 0%, #5a8fc4 100%);
    color: white;
    padding: 18px 50px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(127, 178, 229, 0.3);
}

.final-close-cta:hover {
    background: linear-gradient(135deg, #5a8fc4 0%, #3d6ba3 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(127, 178, 229, 0.4);
}

@media (max-width: 768px) {
    .final-close-section {
        padding: 80px 0;
        min-height: 400px;
    }
    
    .final-close-title {
        font-size: 32px;
    }
    
    .final-close-body {
        font-size: 16px;
    }
}


/* ===== SECTION 3: PROCESS CARDS ===== */
.process-cards-section {
    padding: 40px 0;
    background: linear-gradient(to bottom, var(--blanco-principal) 0%, var(--blanco-principal) 100%);
    color: #000000;
}

.process-label {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #7FB2E5;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.process-cards-title {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.process-cards-subtitle {
    text-align: center;
    font-size: 18px;
    color: #333333;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.process-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-photo-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.process-photo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.process-photo {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.process-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    will-change: transform;
    backface-visibility: hidden;
}

.process-card-img.isa2-img {
    object-position: center 25% !important;
}

.process-card-content {
    padding: 20px;
}

.process-step {
    font-size: 11px;
    font-weight: 700;
    color: #2272FF;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.process-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.3;
}

.process-card-body {
    font-size: 13px;
    color: #666666;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .process-cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-cards-title {
        font-size: 32px;
    }
    
    .process-photo {
        height: 200px;
        margin-top: 40px;
    }

    .process-photo-card:first-child .process-card-img {
        object-position: center 30% !important;
    }
}


/* Logo Carousel Ribbon */
.results-logo {
    width: calc(100vw - 20px);
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: calc(-50vw + 10px);
    margin-right: calc(-50vw + 10px);
    margin-top: 20px; /* Reducido de 40px */
    padding: 3px;
    background: rgba(255, 255, 255, 0.8);
    overflow: hidden;
}

.logo-carousel-ribbon {
    width: 100%;
    overflow: hidden;
    padding: 0;
}

.logo-carousel-track {
    display: flex;
    gap: 80px;
    animation: scrollLogoLeft 40s linear infinite;
    width: fit-content;
    padding: 0 60px;
}

@keyframes scrollLogoLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-carousel-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 0;
}

.carousel-logo {
    max-width: 100px;
    height: auto;
    margin: 0;
    filter: brightness(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
    transition: all 0.3s ease;
    opacity: 1;
}

.carousel-logo:hover {
    filter: brightness(1.1) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    opacity: 1;
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .logo-carousel-track {
        gap: 40px;
        animation: scrollLogoLeft 30s linear infinite;
    }
    
    .logo-carousel-item {
        min-width: 100px;
        padding: 0;
    }
    
    .carousel-logo {
        max-width: 70px;
        margin: 0;
    }
}


/* ===== VIDEO TESTIMONIALS SECTION ===== */
.video-testimonials-section {
    padding: 10px 0;
    background: linear-gradient(to bottom, #FFFFFF 0%, #F5F7FA 50%, #FFFFFF 100%);
    color: #000000;
}

.video-testimonials-label {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #5980A1;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.video-testimonials-title {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    color: #1a1a1a;
    font-family: 'Playfair Display', serif;
}

.video-testimonials-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.video-slider-wrapper {
    position: relative;
    max-width: 1300px;
    margin: 0 auto 60px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.video-slider-container {
    overflow: hidden;
    width: 100%;
}

.video-testimonials-grid {
    display: flex; /* Cambiado de grid a flex para el slider */
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
    width: 100%;
}

.video-testimonial-card {
    flex: 0 0 calc(33.333% - 20px); /* Mostrar 3 videos (restando espacio del gap) */
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
}

.slider-arrow {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: #224E54;
    flex-shrink: 0;
    z-index: 10;
}

.slider-arrow:hover {
    background: #5980A1;
    color: #ffffff;
    border-color: #5980A1;
    transform: scale(1.1);
}

.slider-arrow svg {
    width: 24px;
    height: 24px;
}

/* Responsive slider */
@media (max-width: 1024px) {
    .video-testimonial-card {
        flex: 0 0 calc(50% - 15px); /* 2 videos en tablets */
    }
}

@media (max-width: 768px) {
    .video-slider-wrapper {
        gap: 10px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .video-testimonial-card {
        flex: 0 0 100%; /* 1 video en móviles */
    }
}

.video-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #5980A1;
}

.video-testimonial-container {
    position: relative;
    width: 100%;
    padding-top: 133%; /* Ajustado para videos verticales (9:16) */
    background: #000000;
    overflow: hidden;
}

.video-testimonial-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

.video-testimonial-content {
    padding: 15px; /* Reducido de 25px */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-names {
    font-size: 16px; /* Reducido de 18px */
    font-weight: 700;
    color: #224E54;
    margin-bottom: 4px; /* Reducido de 8px */
    line-height: 1.2;
}

.testimonial-date {
    font-size: 12px; /* Reducido de 13px */
    font-weight: 600;
    color: #5980A1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px; /* Reducido de 8px */
}

.testimonial-address {
    font-size: 13px; /* Reducido de 14px */
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px; /* Reducido de 12px */
}

.testimonial-description {
    font-size: 13px; /* Reducido de 14px */
    color: #666666;
    line-height: 1.4; /* Reducido de 1.6 */
    margin-bottom: 10px; /* Reducido de 15px */
    flex-grow: 1;
}

.testimonial-badge {
    display: inline-block;
    background: linear-gradient(135deg, #5980A1 0%, #224E54 100%);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.video-testimonials-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #224E54 0%, #5980A1 100%);
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.video-testimonials-cta p {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.video-testimonials-btn {
    display: inline-block;
    background: #C2A476;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(194, 164, 118, 0.3);
}

.video-testimonials-btn:hover {
    background: #b39468;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(194, 164, 118, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .video-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .video-testimonials-title {
        font-size: 32px;
    }

    .video-testimonials-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .video-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .video-testimonial-content {
        padding: 20px;
    }

    .testimonial-names {
        font-size: 16px;
    }

    .testimonial-description {
        font-size: 13px;
    }
}


/* Video Testimonial Sound Button */
.video-testimonial-sound-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(34, 78, 84, 0.9);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    z-index: 100;
}

.video-testimonial-sound-btn:hover {
    background: rgba(34, 78, 84, 1);
    transform: translate(-50%, -50%) scale(1.05);
}

.video-testimonial-sound-btn svg {
    width: 28px;
    height: 28px;
}

.video-testimonial-sound-btn.active {
    background: rgba(34, 114, 255, 0.9);
}

.video-testimonial-sound-btn.active:hover {
    background: rgba(34, 114, 255, 1);
    transform: translate(-50%, -50%) scale(1.05);
}



/* ===== FOOTER ===== */
.footer-cta {
    padding: 15px 0;
    background: linear-gradient(to bottom, #FFFFFF 0%, #F5F7FA 100%);
    text-align: center;
}

.footer-cta .cta-button {
    background: var(--verde-azulado-oscuro);
    color: var(--blanco-principal);
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(34, 78, 84, 0.3);
}

.footer-cta .cta-button:hover {
    background: #1a3a42;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(34, 78, 84, 0.4);
}

.footer {
    background: linear-gradient(to bottom, var(--verde-azulado-oscuro) 0%, #1a3a42 100%);
    color: var(--blanco-principal);
    padding: 15px 0 10px;
    border-top: 3px solid var(--borde-rama);
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 10px;
    align-items: flex-start;
}

.footer-brand-block {
    text-align: left;
}

.footer-brand {
    font-size: 28px;
    font-weight: 900;
    color: var(--borde-rama);
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.5px;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    font-weight: 500;
}

.footer-tagline-link {
    color: var(--borde-rama);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-tagline-link:hover {
    color: #FFD54F;
    text-decoration: underline;
}

.footer-links-block {
    display: flex;
    flex-direction: row;
    gap: 30px;
    text-align: left;
    align-items: center;
}

.footer-link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 2px 0;
}

.footer-link-item:hover {
    color: var(--borde-rama);
    transform: translateX(5px);
}

.footer-link-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 8px;
    text-align: center;
}

.footer-legal-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2px;
    font-weight: 500;
}

.footer-disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        font-size: 24px;
    }
    
    .footer-tagline {
        font-size: 13px;
    }
    
    .footer-link-item {
        font-size: 14px;
    }
    
    .footer-cta .cta-button {
        padding: 16px 40px;
        font-size: 16px;
    }
}


/* ===== CALENDLY MODAL ===== */
.calendly-modal {
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-in-out;
}

.calendly-modal-content {
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 12px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.calendly-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #224E54;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendly-close:hover {
    color: #d4b896;
    transform: scale(1.2);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .calendly-modal-content {
        width: 95%;
        padding: 15px;
    }
    
    .calendly-close {
        right: 15px;
        top: 15px;
    }
}
