/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cores */
.text-orange {
    color: #F47C3C;
}

.text-teal {
    color: #2B9B9B;
}

.text-muted {
    color: #666;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: #f0f0f0;
    color: #2B9B9B;
}

.cta-button {
    background: #F47C3C;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #e06b2f;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/hero_new.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: #555;
    margin-bottom: 32px;
    line-height: 1.5;
}

.hero-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 16px;
}

.card-content {
    margin-bottom: 24px;
}

.card-content p {
    margin-bottom: 8px;
    color: #555;
}

.card-highlight {
    color: #333;
}

.highlight-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.testimonial {
    color: #F47C3C;
    font-style: italic;
    font-size: 1.1rem;
    padding: 12px 16px;
    border-left: 4px solid #F47C3C;
    background: #fff5f0;
    border-radius: 0 8px 8px 0;
    margin: 16px 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #F47C3C;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(244, 124, 60, 0.3);
}

.btn-primary:hover {
    background: #e06b2f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 124, 60, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #2B9B9B;
    border: 2px solid #2B9B9B;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(43, 155, 155, 0.2);
}

.btn-secondary:hover {
    background: #2B9B9B;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 155, 155, 0.3);
}

/* Sections */
.section-gray {
    background: #f8f9fa;
    padding: 80px 0;
}

.section-white {
    background: white;
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #333;
    margin-bottom: 24px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 16px;
    line-height: 1.6;
}

.section-subdescription {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 16px auto;
    line-height: 1.6;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.stat-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-left: 4px solid;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-orange {
    border-left-color: #F47C3C;
}

.stat-teal {
    border-left-color: #2B9B9B;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-orange .stat-number {
    color: #F47C3C;
}

.stat-teal .stat-number {
    color: #2B9B9B;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.stat-orange .stat-icon {
    color: #F47C3C;
}

.stat-teal .stat-icon {
    color: #2B9B9B;
}

.stat-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.stat-description {
    color: #666;
    font-size: 0.9rem;
}

/* SVA Content */
.sva-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}

.sva-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-icon.orange {
    background: #F47C3C;
}

.benefit-icon.teal {
    background: #2B9B9B;
}

.benefit-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.benefit-content p {
    color: #666;
    font-size: 0.9rem;
}

/* Value Path */
.value-path {
    background: #f8f9fa;
    padding: 48px;
    border-radius: 16px;
    text-align: center;
}

.value-path h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 32px;
}

.path-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    min-width: 120px;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 8px;
}

.step-icon.orange {
    background: #F47C3C;
}

.step-icon.teal {
    background: #2B9B9B;
}

.step-title {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.arrow {
    font-size: 1.5rem;
    color: #666;
    font-weight: bold;
}

/* Telemedicine Section */
.telemedicine-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 48px;
}

.telemedicine-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
}

.telemedicine-text p {
    margin-bottom: 16px;
    color: #555;
    line-height: 1.6;
}

.highlight-box {
    background: #fff5f0;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #F47C3C;
    margin: 24px 0;
}

.highlight-text {
    color: #F47C3C;
    font-weight: 600;
    font-size: 1.1rem;
}

.features-list {
    margin: 24px 0;
}

.feature {
    color: #333;
    margin-bottom: 8px;
    line-height: 1.5;
}

.cta-text {
    color: #2B9B9B;
    font-weight: 600;
    font-size: 1.1rem;
}

.telemedicine-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.benefit-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card .benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 16px;
    font-size: 1.5rem;
}

.benefit-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.benefit-card p {
    color: #666;
    line-height: 1.5;
}

.cta-banner {
    background: linear-gradient(135deg, #F47C3C, #2B9B9B);
    color: white;
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Differentials */
.differentials-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}

.differentials-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.differential-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
}

.differential-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.differential-icon.orange {
    background: #F47C3C;
}

.differential-icon.teal {
    background: #2B9B9B;
}

.differential-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.differential-content p {
    color: #666;
    line-height: 1.5;
}

/* Testimonials */
.testimonials-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 48px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 16px;
}

.testimonial-icon.orange {
    background: #F47C3C;
}

.testimonial-icon.teal {
    background: #2B9B9B;
}

.testimonial-card blockquote {
    font-style: italic;
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 16px;
    line-height: 1.5;
}

.testimonial-author strong {
    color: #F47C3C;
    display: block;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #F47C3C, #2B9B9B);
    padding: 80px 0;
    color: white;
}

.contact-header {
    text-align: center;
    margin-bottom: 48px;
}

.contact-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 24px;
}

.contact-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.whatsapp-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.whatsapp-button {
    background: #25D366;
    color: white;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 16px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
    background: #22c55e;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.whatsapp-button .fab {
    font-size: 1.4rem;
}

.whatsapp-info {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
}

.whatsapp-info .fas {
    font-size: 1rem;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 48px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 32px;
}

.footer-brand p {
    color: #ccc;
    margin-top: 16px;
    line-height: 1.6;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

.footer-section h4 {
    color: #F47C3C;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 24px;
    text-align: center;
    color: #999;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .cta-button {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .sva-content,
    .telemedicine-content,
    .differentials-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .path-steps {
        flex-direction: column;
        gap: 24px;
    }

    .arrow {
        transform: rotate(90deg);
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-card {
        padding: 24px;
    }

    .whatsapp-button {
        padding: 16px 32px;
        font-size: 1.1rem;
    }

    .section-gray,
    .section-white {
        padding: 60px 0;
    }

    .contact-section {
        padding: 60px 0;
    }
}

