* {
    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;
    
    /* Nueva paleta profesional basada en el verde del hero */
    --hero-green: #01B84F;
    --dark-green: #018A3C;
    --light-green: #E8F8F0;
    --accent-green: #A8E6CF;
    --forest-green: #004D21;
    --mint-green: #D4F1E3;
    --sage-green: #7FB685;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #000000;
    padding: 20px 0;
    text-align: center;
}

.banner-tag {
    display: inline-block;
    background-color: #ffffff;
    border: 2px solid #000000;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    animation: scaleUp 2s infinite;
}

@keyframes scaleUp {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.red-dot {
    color: #ff0000;
    margin-right: 8px;
}

/* Hero Section */
.hero {
    padding: 40px 0 0 0;
    background: #01B84F;
    color: #000000;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, #01B84F, #ffffff);
    z-index: 0;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.subtitle-confirmed {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #7c3aed;
    padding: 8px 16px;
    border-radius: 6px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.checkmark {
    background-color: #7c3aed;
    color: white;
    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: #000000;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 32px;
    color: #000000;
    margin-bottom: 30px;
}

.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: #000000;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.hero-bullet-points li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #000000;
    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: #000000;
    letter-spacing: -0.5px;
}

.video-container {
    margin: 30px auto -50px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    position: relative;
    z-index: 10;
}

.video-container video {
    display: block;
    width: 100%;
    height: auto;
    cursor: pointer; /* Indicar que el video es clickeable */
}

.video-container video:hover {
    opacity: 0.95; /* Feedback visual sutil al hacer hover */
}

/* Botón de Sonido */
.sound-toggle-btn {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 30px rgba(128, 128, 128, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.1);
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: pulseGlow 2s ease-in-out infinite, bounce 2s ease-in-out infinite;
}

.sound-toggle-btn:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    transform: translate(-50%, 50%) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 0 0 50px rgba(128, 128, 128, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.15);
    animation: none;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 30px rgba(128, 128, 128, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 0 8px 35px rgba(0, 0, 0, 0.6), 0 0 60px rgba(128, 128, 128, 0.6), inset 0 0 30px rgba(255, 255, 255, 0.2);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translate(-50%, 50%) translateY(0);
    }
    50% {
        transform: translate(-50%, 50%) translateY(-8px);
    }
}

.sound-toggle-btn:active {
    transform: translateX(-50%) scale(0.98);
}

.sound-toggle-btn.sound-on {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

.sound-toggle-btn.sound-on:hover {
    background: linear-gradient(135deg, #6d28d9 0%, #5b21b6 100%);
    box-shadow: 0 12px 35px rgba(124, 58, 237, 0.5);
}

.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: #000000;
    color: var(--secondary-color);
    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;
}

.cta-button:hover {
    background-color: #2d2d2d;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.cta-button:active {
    transform: translateY(0);
}

/* Main Content Section - REDISEÑADO */
.main-content {
    padding: 100px 0 80px 0;
    background: linear-gradient(135deg, var(--light-green) 0%, #ffffff 100%);
    color: var(--forest-green);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.main-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--hero-green), var(--dark-green), var(--hero-green));
}

.main-content .hero-title {
    color: var(--forest-green);
    font-size: 36px;
}

.main-content .hero-description {
    color: #2d3748;
}

.main-content .cta-button {
    background: linear-gradient(135deg, var(--hero-green) 0%, var(--dark-green) 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(1, 184, 79, 0.3);
    border: none;
}

.main-content .cta-button:hover {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--forest-green) 100%);
    box-shadow: 0 12px 35px rgba(1, 184, 79, 0.4);
    transform: translateY(-3px);
}

.main-headline {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 25px;
    color: var(--forest-green);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.main-subheadline {
    font-size: 20px;
    color: #2d3748;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
}

.bullet-points {
    list-style: none !important;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    background: white;
    padding: 40px 60px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(1, 184, 79, 0.1);
    border: 2px solid var(--mint-green);
}

.bullet-points li {
    font-size: 18px;
    color: var(--forest-green);
    margin-bottom: 18px;
    padding-left: 40px;
    position: relative;
    text-align: left;
    display: block;
    margin-left: 0;
    font-weight: 500;
}

.bullet-points li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--hero-green);
    font-weight: bold;
    font-size: 24px;
    background: var(--light-green);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 32px;
    text-align: center;
}

.cta-button-purple {
    background: linear-gradient(135deg, var(--hero-green) 0%, var(--dark-green) 100%) !important;
    color: #ffffff !important;
    display: inline-block;
    margin-left: auto;
    margin-right: 0;
    box-shadow: 0 8px 25px rgba(1, 184, 79, 0.3);
    border: none;
    padding: 18px 45px;
    font-size: 17px;
}

.cta-button-purple:hover {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--forest-green) 100%) !important;
    box-shadow: 0 12px 35px rgba(1, 184, 79, 0.4);
}

.cta-subtext {
    display: block;
    font-size: 13px;
    color: var(--sage-green);
    margin-top: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.cta-button-problem {
    background: linear-gradient(135deg, var(--hero-green) 0%, var(--dark-green) 100%);
    color: #ffffff;
    display: inline-block;
    margin-top: 25px;
    box-shadow: 0 8px 25px rgba(1, 184, 79, 0.3);
    border: none;
    padding: 18px 45px;
    font-size: 17px;
}

.cta-button-problem:hover {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--forest-green) 100%);
    box-shadow: 0 12px 35px rgba(1, 184, 79, 0.4);
}

.cta-button-what-is {
    background: linear-gradient(135deg, var(--hero-green) 0%, var(--dark-green) 100%) !important;
    color: #ffffff !important;
    display: block;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 700;
    border: none;
    padding: 18px 45px;
    font-size: 17px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(1, 184, 79, 0.3);
}

.cta-button-what-is:hover {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--forest-green) 100%) !important;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(1, 184, 79, 0.4);
}

.download-btn {
    background: #000000;
    color: white;
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 0px auto 20px auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.download-btn:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Testimonials */
.testimonials {
    padding: 0px 0 60px 0;
    background-color: #ffffff;
    color: #000000;
    margin-top: 60px;
}

.testimonials h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #000000;
}

.testimonials-subtitle {
    text-align: center;
    font-size: 16px;
    color: #004d2a;
    margin-top: 30px;
    font-style: italic;
    font-weight: 600;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    max-width: 100%;
    margin: -20px auto 0;
    padding: 0 20px;
}

.testimonial-card {
    background: #f0f9f4;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid #01B84F;
    padding: 0;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.testimonial-card:nth-child(1) {
    transform: rotate(-3deg);
    position: relative;
    z-index: 2;
    margin-right: -20px;
}

.testimonial-card:nth-child(1):hover {
    transform: rotate(-3deg) translateY(-8px);
}

.testimonial-card:nth-child(2) {
    transform: rotate(3deg);
    position: relative;
    z-index: 1;
}

.testimonial-card:nth-child(2):hover {
    transform: rotate(3deg) translateY(-8px);
}

.testimonial-card:nth-child(3) {
    transform: rotate(-3deg);
    position: relative;
    z-index: 2;
    margin-right: -20px;
    margin-left: 30px;
}

.testimonial-card:nth-child(3):hover {
    transform: rotate(-3deg) translateY(-8px);
}

.testimonial-card:nth-child(4) {
    transform: rotate(3deg);
    position: relative;
    z-index: 1;
}

.testimonial-card:nth-child(4):hover {
    transform: rotate(3deg) translateY(-8px);
}

.testimonial-images {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.testimonial-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.testimonial-img.active {
    opacity: 1;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: #ffffff;
    color: #000000;
}

.benefits h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: #000000;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin-bottom: 25px;
}

.benefit-card {
    background: rgba(0, 0, 0, 0.02);
    padding: 12px 10px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    color: #000000;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: #000000;
    background: #f8f8f8;
}

.benefit-number {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

.benefit-card h3 {
    font-size: 14px;
    margin-bottom: 10px;
    color: #000000;
    line-height: 1.2;
}

.benefit-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 5px;
    margin: 8px 0;
}

.benefit-card p {
    font-size: 12px;
    color: #666666;
    line-height: 1.4;
}

.benefits .cta-button {
    display: block;
    margin: 0 auto;
}

/* FAQ Section - REDISEÑADO */
.faq {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--mint-green) 0%, #ffffff 100%);
    color: var(--forest-green);
    position: relative;
}

.faq::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--hero-green), transparent);
}

.faq h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: var(--forest-green);
}

.faq-title {
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 60px;
    text-align: center;
    color: var(--forest-green);
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 2px solid var(--mint-green);
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(1, 184, 79, 0.08);
}

.faq-item:hover {
    border-color: var(--hero-green);
    box-shadow: 0 8px 25px rgba(1, 184, 79, 0.15);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: linear-gradient(135deg, var(--hero-green) 0%, var(--dark-green) 100%);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--forest-green) 100%);
}

.faq-icon {
    font-size: 28px;
    transition: transform 0.3s ease;
    font-weight: 300;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
    background: #ffffff;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 30px;
    border-top: 2px solid var(--light-green);
}

.faq-answer p {
    margin-bottom: 15px;
    color: #2d3748;
    font-size: 16px;
    line-height: 1.8;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Footer CTA - REDISEÑADO */
.footer-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--mint-green) 100%);
    text-align: center;
    color: var(--forest-green);
    position: relative;
}

.footer-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--hero-green), transparent);
}

.footer-cta .cta-button {
    background: linear-gradient(135deg, var(--hero-green) 0%, var(--dark-green) 100%);
    color: white;
    box-shadow: 0 10px 35px rgba(1, 184, 79, 0.3);
    padding: 20px 55px;
    font-size: 19px;
}

.footer-cta .cta-button:hover {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--forest-green) 100%);
    box-shadow: 0 15px 45px rgba(1, 184, 79, 0.4);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 30px 0;
    text-align: center;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-main-title {
        font-size: 24px;
    }

    .hero-title {
        font-size: 20px;
    }

    .benefits h2,
    .faq h2 {
        font-size: 22px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .video-container {
        margin: 20px auto -60px auto;
    }

    .main-content {
        padding-top: 100px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 20px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 14px;
    }

    .benefit-card {
        padding: 25px 15px;
    }

    .faq-question {
        padding: 15px;
        font-size: 14px;
    }
    
    .what-is-tag {
        margin-left: 60px;
    }
}


/* Booking Section - Improved */
.booking-section {
    margin-top: 60px;
    padding: 35px;
    background-color: #ffffff;
    border-radius: 12px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.booking-tabs {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 15px;
}

.booking-tab {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #999;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    transition: all 0.3s ease;
}

.booking-tab:hover {
    color: #7c3aed;
}

.booking-tab.active {
    color: #7c3aed;
}

.tab-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: currentColor;
}

.booking-content {
    position: relative;
}

.booking-tab-content {
    display: none;
}

.booking-tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.booking-tab-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000000;
}

.booking-tab-content > p {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.5;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
}

.phone-group {
    display: flex;
    gap: 10px;
}

.country-code {
    padding: 11px 10px;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    min-width: 80px;
    background-color: #f8f8f8;
    transition: all 0.3s ease;
}

.country-code:focus {
    outline: none;
    border-color: #7c3aed;
    background-color: #ffffff;
}

.phone-group input {
    flex: 1;
}

.booking-form input {
    padding: 11px 14px;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    font-size: 13px;
    font-family: inherit;
    background-color: #f8f8f8;
    transition: all 0.3s ease;
}

.booking-form input::placeholder {
    color: #999;
}

.booking-form input:focus {
    outline: none;
    border-color: #7c3aed;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.consent-text {
    font-size: 12px;
    color: #666;
    margin: 15px 0;
    line-height: 1.6;
}

.consent-text u {
    text-decoration: underline;
    cursor: pointer;
    color: #7c3aed;
}

.booking-form button {
    margin-top: 12px;
    padding: 13px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
}

.booking-form iframe {
    border-radius: 8px;
    margin-top: 15px;
}


/* Benefits Header Card */
.benefits-header-card {
    background-color: #ffffff !important;
    padding: 40px !important;
    border-radius: 12px !important;
    margin-bottom: 50px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid #e0e0e0 !important;
}

.benefits-header-card h2 {
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 0 !important;
    text-align: center !important;
}


/* What This Is Section - REDISEÑADO */
.what-is-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--mint-green) 100%);
    color: var(--forest-green);
    position: relative;
}

.what-is-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--hero-green), transparent);
}

.what-is-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.what-is-images {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.what-is-image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(1, 184, 79, 0.25);
    border: 4px solid var(--hero-green);
    transition: all 0.3s ease;
}

.what-is-image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(1, 184, 79, 0.35);
}

.what-is-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.what-is-img:first-child {
    object-fit: contain;
    width: 70%;
    height: 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.what-is-img.active {
    opacity: 1;
}

.what-is-content {
    text-align: left;
}

.what-is-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--hero-green) 0%, var(--dark-green) 100%);
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(1, 184, 79, 0.3);
}

.what-is-title {
    font-size: 40px;
    font-weight: 900;
    color: var(--forest-green);
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.what-is-text {
    font-size: 19px;
    color: #2d3748;
    margin-bottom: 35px;
    line-height: 1.7;
    font-weight: 400;
}

.what-is-points {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(1, 184, 79, 0.1);
    border-left: 4px solid var(--hero-green);
}

.what-is-points li {
    font-size: 17px;
    color: var(--forest-green);
    padding-left: 35px;
    position: relative;
    font-weight: 500;
    line-height: 1.6;
}

.what-is-points li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--hero-green);
    font-weight: bold;
    font-size: 22px;
    background: var(--light-green);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 28px;
    text-align: center;
}

/* Rectangle Section */
.rectangle-section {
    padding: 60px 0;
    background-color: #ffffff;
    color: #000000;
    margin-top: 80px;
}

.rectangle-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.rectangle-title {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    z-index: 10;
    white-space: nowrap;
}

.rectangle-section img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    filter: sepia(100%) saturate(300%) hue-rotate(80deg) brightness(0.9);
}

.leo9-image {
    width: 200px !important;
    height: auto !important;
    max-width: 100% !important;
    margin: 20px auto 0 !important;
    display: block !important;
}

/* The Problem Section - REDISEÑADO */
.problem-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-green) 0%, #ffffff 100%);
    color: var(--forest-green);
    position: relative;
}

.problem-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--hero-green), transparent);
}

.problem-content {
    max-width: 1100px;
    margin: 0 auto;
}

.problem-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--forest-green);
    margin-bottom: 60px;
    text-align: center;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.problem-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.problem-images {
    display: flex;
    justify-content: center;
}

.problem-image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(1, 184, 79, 0.25);
    border: 4px solid var(--hero-green);
    transition: all 0.3s ease;
}

.problem-image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(1, 184, 79, 0.35);
}

.problem-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.problem-img.active {
    opacity: 1;
}

.problem-text {
    text-align: left;
}

.problem-intro {
    font-size: 19px;
    color: #2d3748;
    margin-bottom: 30px;
    line-height: 1.7;
    font-weight: 400;
}

.problem-points {
    list-style: none;
    margin-bottom: 35px;
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(1, 184, 79, 0.1);
    border-left: 4px solid var(--hero-green);
}

.problem-points li {
    font-size: 17px;
    color: var(--forest-green);
    padding-left: 35px;
    position: relative;
    font-weight: 500;
    margin-bottom: 18px;
    line-height: 1.6;
}

.problem-points li:last-child {
    margin-bottom: 0;
}

.problem-points li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--hero-green);
    font-weight: bold;
    font-size: 22px;
    background: var(--light-green);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 28px;
    text-align: center;
}

.problem-transition {
    font-size: 18px;
    color: #e74c3c;
    font-weight: 600;
    font-style: italic;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .rectangle-section {
        padding: 40px 0;
        margin-top: 40px;
    }

    .rectangle-title {
        font-size: 24px;
        width: 90%;
        white-space: normal;
        top: 50%;
    }

    .rectangle-section img {
        min-height: 120px;
        object-fit: cover;
    }

    .what-is-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .what-is-tag {
        margin-left: 65px;
    }
    
    .what-is-image-container {
        max-width: 100%;
        height: 300px;
    }
    
    .what-is-title {
        font-size: 28px;
    }
    
    .what-is-text {
        font-size: 16px;
    }
    
    .problem-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .problem-image-container {
        max-width: 100%;
        height: 280px;
    }
    
    .problem-title {
        font-size: 28px;
    }
    
    .problem-text {
        text-align: left;
    }
    
    .problem-points li {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .cta-button-problem {
        width: 100%;
        margin-top: 20px;
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .bullet-points li {
        margin-left: 0;
        text-align: center;
        padding-left: 0;
    }
    
    .what-is-points {
        grid-template-columns: 1fr;
    }
}

/* The Solution Section - REDISEÑADO */
.solution-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.solution-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(1, 184, 79, 0.85) 0%, rgba(0, 77, 33, 0.9) 100%);
    z-index: 2;
}

.solution-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.solution-title {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
}

.solution-subtitle {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    font-weight: 300;
    letter-spacing: 0.3px;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px;
}

.solution-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 3px solid var(--hero-green);
    padding: 45px 35px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: left;
    position: relative;
    animation: slideUp 0.6s ease-out;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.solution-card:nth-child(1) {
    animation-delay: 0.1s;
}

.solution-card:nth-child(2) {
    animation-delay: 0.3s;
}

.solution-card:nth-child(3) {
    animation-delay: 0.5s;
}

.solution-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 1);
    border-color: var(--dark-green);
    box-shadow: 0 25px 60px rgba(1, 184, 79, 0.4);
}

.card-number {
    font-size: 60px;
    font-weight: 900;
    color: var(--light-green);
    position: absolute;
    top: 25px;
    right: 30px;
    line-height: 1;
    opacity: 0.6;
}

.solution-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.solution-card p {
    font-size: 15px;
    color: #2d2d2d;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .solution-title {
        font-size: 32px;
    }
    
    .solution-section {
        padding: 60px 0;
    }
    
    .solution-grid {
        grid-template-columns: 1fr;
    }
}

.solution-cta-btn {
    background-color: #ffffff;
    color: var(--forest-green);
    border: 3px solid #ffffff;
    padding: 20px 55px;
    font-size: 19px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 60px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
    display: inline-block;
    letter-spacing: 0.3px;
}

.solution-cta-btn:hover {
    background-color: var(--forest-green);
    color: #ffffff;
    border-color: var(--forest-green);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
}

/* Visualize Your Future Section - REDISEÑADO */
.visualize-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--light-green) 100%);
    color: var(--forest-green);
    position: relative;
}

.visualize-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--hero-green), transparent);
}

.visualize-content {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.visualize-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--forest-green);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.visualize-subtitle {
    font-size: 20px;
    color: #2d3748;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.visualize-benefits {
    list-style: none;
    text-align: left;
    max-width: 900px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    background: white;
    padding: 40px 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(1, 184, 79, 0.1);
    border: 2px solid var(--mint-green);
}

.visualize-benefits li {
    font-size: 17px;
    color: var(--forest-green);
    padding-left: 35px;
    position: relative;
    font-weight: 500;
    line-height: 1.6;
}

.visualize-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--hero-green);
    font-weight: bold;
    font-size: 22px;
    background: var(--light-green);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 28px;
    text-align: center;
}

.visualize-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.visualize-image-card {
    display: flex;
    justify-content: center;
}

.visualize-image-container {
    position: relative;
    width: 100%;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(1, 184, 79, 0.2);
    background-color: #f5f5f5;
    border: 3px solid var(--hero-green);
    transition: all 0.3s ease;
}

.visualize-image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(1, 184, 79, 0.3);
}

.visualize-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .visualize-images-grid {
        grid-template-columns: 1fr;
    }
    
    .visualize-benefits {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    
    .visualize-title {
        font-size: 32px;
    }
} 1fr);
        gap: 15px;
    }
    
    .visualize-image-container {
        height: 150px;
    }
}

/* Steps Section */
.steps-title {
    font-size: 32px;
    font-weight: 900;
    color: #000000;
    margin-top: 60px;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background-color: #f9f9f9;
    border: 2px solid #2272FF;
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.step-card:hover {
    background-color: rgba(34, 114, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(34, 114, 255, 0.2);
}

.step-number {
    font-size: 28px;
    font-weight: 900;
    color: #2272FF;
    margin-bottom: 5px;
}

.step-text {
    font-size: 13px;
    color: #000000;
    line-height: 1.4;
    font-weight: 500;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .steps-title {
        font-size: 24px;
    }
}

/* Para Quién Es Section */
.para-quien-section {
    padding: 80px 0;
    background-color: #ffffff;
    color: #000000;
    box-shadow: inset 0 -100px 100px -80px rgba(46, 92, 138, 0.1);
}

.para-quien-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.para-quien-title {
    font-size: 40px;
    font-weight: 900;
    color: #000000;
    margin-bottom: 50px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.para-quien-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.para-quien-for,
.para-quien-not-for {
    text-align: left;
    padding: 30px;
    border-radius: 12px;
    background-color: #f9f9f9;
}

.para-quien-for {
    border-left: 4px solid #2272FF;
}

.para-quien-not-for {
    border-left: 4px solid #e74c3c;
}

.para-quien-subtitle {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.para-quien-list {
    list-style: none;
    margin: 0;
}

.para-quien-list li {
    font-size: 16px;
    color: #000000;
    padding-left: 30px;
    position: relative;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.6;
}

.para-quien-list li:last-child {
    margin-bottom: 0;
}

.para-quien-list-positive li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2272FF;
    font-weight: bold;
    font-size: 18px;
}

.para-quien-list-negative li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
    font-size: 18px;
}

@media (max-width: 768px) {
    .para-quien-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .para-quien-title {
        font-size: 28px;
    }
}

/* Final Action Section - REDISEÑADO */
.final-action-section {
    padding: 100px 0 120px 0;
    background: linear-gradient(135deg, var(--hero-green) 0%, var(--dark-green) 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.final-action-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    z-index: 0;
}

.final-action-section::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.final-action-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.final-action-main-title {
    font-size: 52px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
    letter-spacing: -0.5px;
}

.final-action-main-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 50px;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.final-action-key-points {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.key-point-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    color: var(--forest-green);
    background: rgba(255, 255, 255, 0.95);
    padding: 14px 28px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    font-weight: 600;
}

.key-point-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 1);
}

.key-point-icon {
    color: var(--hero-green);
    font-weight: bold;
    font-size: 20px;
}

.final-action-secondary-title {
    font-size: 44px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 60px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.final-action-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 60px;
}

.final-action-left,
.final-action-right {
    text-align: left;
}

.criteria-for,
.criteria-not-for {
    padding: 35px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.criteria-for:hover,
.criteria-not-for:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 1);
}

.criteria-for {
    border-left: 6px solid var(--hero-green);
}

.criteria-not-for {
    border-left: 6px solid #e74c3c;
}

.criteria-list {
    list-style: none;
    margin: 0;
}

.criteria-list li {
    font-size: 16px;
    color: var(--forest-green);
    padding-left: 35px;
    position: relative;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.6;
}

.criteria-list li:last-child {
    margin-bottom: 0;
}

.criteria-list-positive li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--hero-green);
    font-weight: bold;
    font-size: 22px;
    background: var(--light-green);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 28px;
    text-align: center;
}

.criteria-list-negative li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
    font-size: 22px;
    background: #ffe5e5;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 28px;
    text-align: center;
}

.final-action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.final-action-btn {
    padding: 20px 50px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
}

.final-action-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.final-action-btn-primary {
    background-color: #ffffff;
    color: var(--forest-green);
    border: 3px solid #ffffff;
}

.final-action-btn-primary:hover {
    background-color: var(--forest-green);
    color: #ffffff;
    border-color: var(--forest-green);
    transform: translateY(-5px) scale(1.05);
}

.final-action-btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 3px solid #ffffff;
}

.final-action-btn-secondary:hover {
    background-color: #ffffff;
    color: var(--forest-green);
    transform: translateY(-5px) scale(1.05);
}

@media (max-width: 768px) {
    .final-action-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .final-action-main-title {
        font-size: 36px;
    }
    
    .final-action-secondary-title {
        font-size: 32px;
    }
    
    .final-action-buttons {
        flex-direction: column;
    }
    
    .final-action-btn {
        width: 100%;
    }
}

/* Local Trust Section */
.trust-section {
    padding: 80px 0;
    background-color: #ffffff;
    color: #000000;
    box-shadow: inset 0 -100px 100px -80px rgba(46, 92, 138, 0.1);
}

.trust-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-title {
    font-size: 36px;
    font-weight: 900;
    color: #000000;
    margin-bottom: 40px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.trust-points {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.trust-points li {
    font-size: 16px;
    color: #000000;
    padding-left: 30px;
    position: relative;
    font-weight: 500;
    line-height: 1.6;
}

.trust-points li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498DB;
    font-weight: bold;
    font-size: 18px;
}

.trust-image-container {
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background-color: #f5f5f5;
    margin-top: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    border: 3px solid #2E5C8A;
}

.trust-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .trust-points {
        grid-template-columns: 1fr;
    }
    
    .trust-image-container {
        height: 200px;
    }
}

/* Social Proof Section */
.social-proof-section {
    padding: 80px 0;
    background-color: #ffffff;
    color: #2E5C8A;
    box-shadow: inset 0 -100px 100px -80px rgba(46, 92, 138, 0.1);
}

.social-proof-title {
    font-size: 40px;
    font-weight: 900;
    color: #2E5C8A;
    margin-bottom: 60px;
    text-align: center;
    line-height: 1.2;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.social-proof-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.social-proof-text {
    text-align: left;
}

.social-proof-list {
    list-style: none;
    margin: 0;
}

.social-proof-list li {
    font-size: 18px;
    color: #2E5C8A;
    padding-left: 35px;
    position: relative;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.8;
}

.social-proof-list li:last-child {
    margin-bottom: 0;
}

.social-proof-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498DB;
    font-weight: bold;
    font-size: 24px;
}

.social-proof-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-proof-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .social-proof-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .social-proof-title {
        white-space: normal;
        font-size: 28px;
    }
    
    .social-proof-list li {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

/* 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);
}

.final-cta-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.final-cta-content {
    text-align: left;
}

.final-cta-title {
    font-size: 40px;
    font-weight: 900;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.final-cta-subtitle {
    font-size: 18px;
    color: #333333;
    margin-bottom: 40px;
    line-height: 1.6;
}

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.final-cta-btn {
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.final-cta-btn-primary {
    background: linear-gradient(135deg, #3498DB 0%, #2E5C8A 100%);
    color: white;
}

.final-cta-btn-primary:hover {
    background: linear-gradient(135deg, #2E5C8A 0%, #1a3a52 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.final-cta-btn-secondary {
    background-color: #ffffff;
    color: #3498DB;
    border: 2px solid #3498DB;
}

.final-cta-btn-secondary:hover {
    background-color: #f0f8ff;
    transform: translateY(-2px);
}

.final-cta-btn-tertiary {
    background-color: #f0f0f0;
    color: #000000;
    border: 1px solid #d0d0d0;
}

.final-cta-btn-tertiary:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.final-cta-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.final-cta-img {
    width: 90%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .final-cta-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .final-cta-title {
        font-size: 28px;
    }
    
    .final-cta-buttons {
        flex-direction: column;
    }
}

@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;
}


/* Booking CTA Section - REDISEÑADO */
.booking-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-green) 0%, #ffffff 100%);
    color: var(--forest-green);
    position: relative;
}

.booking-cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--hero-green), transparent);
}

.booking-cta-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-cta-title {
    font-size: 44px;
    font-weight: 900;
    color: var(--forest-green);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.booking-cta-subtitle {
    font-size: 20px;
    color: #2d3748;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.booking-cta-btn {
    background: linear-gradient(135deg, var(--hero-green) 0%, var(--dark-green) 100%);
    color: white;
    padding: 20px 55px;
    font-size: 19px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 50px;
    box-shadow: 0 10px 35px rgba(1, 184, 79, 0.3);
    letter-spacing: 0.3px;
}

.booking-cta-btn:hover {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--forest-green) 100%);
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(1, 184, 79, 0.4);
}

.booking-cta-calendar {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    padding: 40px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(1, 184, 79, 0.1);
    border: 2px solid var(--mint-green);
}

.booking-cta-calendar .calendly-inline-widget {
    width: 100%;
    max-width: 900px !important;
    border-radius: 16px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .booking-cta-title {
        font-size: 32px;
    }
    
    .booking-cta-subtitle {
        font-size: 18px;
    }

    .booking-cta-calendar {
        padding: 20px 10px;
    }

    .booking-cta-calendar .calendly-inline-widget {
        max-width: 100% !important;
    }
}


@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero CTA Button */
.cta-button-hero {
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 120px auto 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
    position: relative;
    z-index: 5;
    max-width: 400px;
}

.cta-button-hero:hover {
    background: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.cta-button-hero:active {
    transform: translateY(-1px);
}
