@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;800&family=Poppins:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2F9C95;
    --primary-dark: #268a84;
    --secondary-color: #E3732D;
    --secondary-dark: #d16525;
    --light-gray: #F4F4F4;
    --dark-text: #333333;
    --light-text: #666666;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER ===== */
.header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    display: block;
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
}

.nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.nav a:not(.btn-secondary):hover {
    color: var(--primary-color);
}

.nav a:not(.btn-secondary)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav a:not(.btn-secondary):hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
}

/* ===== BUTTONS ===== */
.btn-primary, .btn-secondary {
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    border-radius: 100px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 16px 40px;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(47, 156, 149, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(47, 156, 149, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-large {
    padding: 20px 48px;
    font-size: 18px;
    font-weight: 700;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 24px;
    font-size: 15px;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(47, 156, 149, 0.25);
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, rgba(47, 156, 149, 0.04) 0%, rgba(227, 115, 45, 0.04) 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -300px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(47, 156, 149, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    z-index: 1;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--dark-text);
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--light-text);
    margin-bottom: 48px;
    line-height: 1.7;
    font-weight: 400;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
    padding: 32px;
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.stat-item {
    text-align: center;
    padding: 8px;
}

.stat-number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--light-text);
    line-height: 1.4;
}

.hero-note {
    margin-top: 24px;
    font-size: 14px;
    color: var(--light-text);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    max-width: 420px;
    height: 520px;
    background: linear-gradient(135deg, rgba(47, 156, 149, 0.12) 0%, rgba(227, 115, 45, 0.12) 100%);
    border-radius: 32px;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.image-placeholder::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: var(--primary-color);
    opacity: 0.15;
    border-radius: 50%;
    top: -80px;
    right: -80px;
    animation: float 6s ease-in-out infinite;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background: var(--secondary-color);
    opacity: 0.15;
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 44px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    color: var(--dark-text);
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--light-text);
    margin-bottom: 64px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== BENEFITS SECTION ===== */
.benefits {
    padding: 100px 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.benefit-card {
    padding: 40px 32px;
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(47, 156, 149, 0.1);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    margin-bottom: 24px;
    display: inline-flex;
    padding: 16px;
    background: rgba(47, 156, 149, 0.08);
    border-radius: 16px;
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    background: rgba(47, 156, 149, 0.15);
    transform: scale(1.1);
}

.benefit-icon svg {
    width: 40px;
    height: 40px;
}

.benefit-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark-text);
}

.benefit-card p {
    color: var(--light-text);
    line-height: 1.7;
    font-size: 15px;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(47, 156, 149, 0.04) 0%, rgba(227, 115, 45, 0.04) 100%);
}

.steps {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 12%;
    right: 12%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    z-index: 0;
    border-radius: 2px;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    background: var(--white);
    padding: 32px 24px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 800;
    margin: 0 auto 28px;
    box-shadow: 0 8px 24px rgba(47, 156, 149, 0.35);
}

.step-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark-text);
}

.step-content p {
    color: var(--light-text);
    line-height: 1.7;
    font-size: 15px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.3;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-section .btn-primary {
    background: var(--secondary-color);
    box-shadow: 0 8px 24px rgba(227, 115, 45, 0.4);
}

.cta-section .btn-primary:hover {
    background: var(--secondary-dark);
    box-shadow: 0 12px 32px rgba(227, 115, 45, 0.5);
}

.cta-note {
    margin-top: 24px;
    font-size: 15px;
    opacity: 0.9;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    padding: 40px 32px;
    background: var(--light-gray);
    border-radius: 24px;
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: 80px;
    color: var(--primary-color);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.testimonial-stars {
    display: flex;
    gap: 6px;
    margin-bottom: 24px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-text);
    margin-bottom: 28px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author strong {
    font-weight: 600;
    color: var(--dark-text);
    font-size: 16px;
    display: block;
    margin-bottom: 6px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--light-text);
}

/* ===== FAQ SECTION ===== */
.faq {
    padding: 100px 0;
    background: var(--light-gray);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-left-color: var(--primary-color);
}

.faq-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark-text);
}

.faq-item p {
    color: var(--light-text);
    line-height: 1.7;
    font-size: 15px;
}

/* ===== FINAL CTA ===== */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(227, 115, 45, 0.08) 0%, rgba(47, 156, 149, 0.08) 100%);
    text-align: center;
}

.final-cta h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--dark-text);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-text);
    color: var(--white);
    padding: 64px 0 32px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
    margin: 8px 0;
}

.footer-bottom a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: #f08542;
}

/* ===== RESPONSIVE - TABLETS ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .image-placeholder {
        height: 450px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== RESPONSIVE - MOBILE ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Header Mobile */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 5px;
    }

    .mobile-menu-toggle span {
        width: 25px;
        height: 3px;
        background: var(--primary-color);
        border-radius: 2px;
        transition: var(--transition);
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
    }

    .nav.active {
        left: 0;
    }

    .nav a {
        font-size: 18px;
        padding: 15px 0;
        width: 100%;
        text-align: center;
    }

    .nav a::after {
        display: none;
    }

    .nav .btn-secondary {
        width: 100%;
        padding: 15px;
    }

    /* Hero Mobile */
    .hero {
        padding: 60px 0;
    }

    .hero-image {
        display: none;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 17px;
        margin-bottom: 32px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        padding: 24px 20px;
        gap: 20px;
        margin-bottom: 32px;
    }

    .stat-number {
        font-size: 32px;
    }

    .btn-large {
        width: 100%;
        padding: 18px;
        font-size: 16px;
    }

    /* Sections Mobile */
    .section-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .benefits, .how-it-works, .testimonials, .faq, .final-cta {
        padding: 60px 0;
    }

    .cta-section {
        padding: 60px 0;
    }

    /* Benefits Mobile */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card {
        padding: 30px 24px;
    }

    /* Steps Mobile */
    .steps {
        flex-direction: column;
        gap: 24px;
    }

    .steps::before {
        display: none;
    }

    .step {
        padding: 30px 24px;
    }

    .step-number {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }

    /* CTA Mobile */
    .cta-content h2 {
        font-size: 26px;
        line-height: 1.4;
    }

    .cta-content p {
        font-size: 16px;
    }

    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 30px 24px;
    }

    /* FAQ Mobile */
    .faq-item {
        padding: 24px 20px;
    }

    .faq-item h3 {
        font-size: 18px;
    }

    /* Final CTA Mobile */
    .final-cta h2 {
        font-size: 26px;
        line-height: 1.4;
    }

    /* Footer Mobile */
    .footer {
        padding: 50px 0 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}

/* ===== MOBILE PEQUENO ===== */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .benefit-card, .step, .testimonial-card, .faq-item {
        padding: 24px 20px;
    }

    .btn-primary {
        padding: 15px 32px;
        font-size: 15px;
    }
}