/* Reset and Base Styles */
:root {
    /* Cores principais do sistema HitClinic */
    --primary: #0d3236;
    --primary-light: #4b6663;
    --primary-dark: #0a2528;
    --accent: #b4a16c;
    --accent-light: #d4c49a;
    
    /* Cores de apoio */
    --success: #22AD5C;
    --warning: #F59460;
    --error: #F23030;
    
    /* Backgrounds - usando mais #0d3236 */
    --bg-primary: #0d3236;
    --bg-secondary: #e6eed9;
    --bg-light: #f8fafc;
    --bg-dark: #0a2528;
    
    /* Textos */
    --text-primary: #0d3236;
    --text-secondary: #64748b;
    --text-light: #ffffff;
    --text-on-dark: #ffffff;
    
    /* Cores legadas para compatibilidade */
    --primary-color: var(--primary);
    --primary-light: var(--primary-light);
    --primary-dark: var(--primary-dark);
    --primary-glow: rgba(13, 50, 54, 0.2);
    --secondary-color: var(--text-light);
    --accent-color: var(--accent);
    --text-color: var(--text-primary);
    --gradient-start: var(--bg-primary);
    --gradient-mid: var(--bg-secondary);
    --gradient-end: #f1f5f9;
    --card-bg: var(--text-light);
    --section-bg: var(--bg-secondary);
    --border-color: #e2e8f0;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-on-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-on-dark);
}

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

/* Particles Background */
.particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
}

/* Modern Components */
.tech-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: var(--accent);
    font-weight: 600;
}

/* Feature Tags */
.features-preview {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-tag {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    background: var(--section-bg);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    color: var(--text-color);
    box-shadow: 0 2px 8px var(--shadow-color);
}

.feature-tag:hover {
    transform: translateY(-2px);
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px var(--primary-glow);
}

.feature-tag .icon {
    margin-right: 8px;
    color: var(--primary-color);
}

.feature-tag:hover .icon {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    pointer-events: none;
}

.hero-content {
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 2rem;
    background: var(--bg-primary);
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-on-dark);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.headline-part {
    display: block;
    content: "";
    margin-top: 0.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-on-dark);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Removed stats styles - not using them anymore */

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(13, 50, 54, 0.2);
}

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 12px var(--shadow-color);
    cursor: pointer;
}

.cta-button i {
    font-size: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    box-shadow: 0 4px 12px rgba(180, 161, 108, 0.3);
    color: var(--text-light);
}

.cta-button.primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(180, 161, 108, 0.4);
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
}

.cta-button.secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    box-shadow: none;
}

.cta-button.secondary:hover {
    background: var(--accent);
    color: var(--text-light);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(180, 161, 108, 0.3);
}

.cta-button.primary .button-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: rotate 4s linear infinite;
}

.cta-button.primary:hover .button-glow {
    opacity: 1;
}

.cta-button.premium {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    box-shadow: 0 4px 12px var(--primary-glow);
    color: var(--secondary-color);
}

.cta-button.premium:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px var(--primary-glow);
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px var(--primary-glow);
}

.button-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button:hover .button-content {
    transform: translateY(-2px);
}

.button-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: rotate 4s linear infinite;
}

.cta-button:hover .button-glow {
    opacity: 1;
}

.spots-left {
    margin-top: 1rem;
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 500;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg-secondary);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    font-weight: 500;
}

.features .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px var(--shadow-color);
    backdrop-filter: none;
    border-radius: 20px;
    padding: 40px;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(0, 102, 204, 0.02) 50%,
        transparent 100%
    );
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 24px var(--shadow-color);
    border: 1px solid var(--primary-light);
}

.feature-card:hover .check-mark {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.feature-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: float 6s ease-in-out infinite;
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    min-height: 3.6rem;
}

.feature-card p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    min-height: 5.2rem;
}

.feature-list {
    list-style: none;
    margin-top: auto;
}

.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: var(--text-primary);
    white-space: nowrap;
}

.check-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--accent);
    border-radius: 50%;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(180, 161, 108, 0.3);
    flex-shrink: 0;
}

/* VIP Section */
.vip-section {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

/* Métricas Animadas */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.metric-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid var(--accent);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(180, 161, 108, 0.3);
}

.metric-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
    display: block;
}

.metric-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-on-dark);
}

.metric-card p {
    opacity: 0.8;
    font-size: 0.9rem;
    color: var(--text-on-dark);
}

.countdown-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(180, 161, 108, 0.1);
    border-radius: 50px;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid var(--accent);
    box-shadow: 0 4px 12px rgba(180, 161, 108, 0.2);
    color: var(--accent);
    font-weight: 500;
}

.glow-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--primary-glow) 0%, transparent 70%);
    opacity: 0.3;
    animation: pulse 4s ease-in-out infinite;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    text-align: center;
    padding: 3rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px var(--shadow-color);
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 24px var(--shadow-color);
    border: 1px solid var(--primary-light);
}

.benefit-item:hover .icon {
    transform: scale(1.1);
    color: var(--primary-color);
}

.benefit-item .icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
}

.benefit-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.benefit-item:hover h4 {
    color: var(--primary-color);
}

.benefit-item p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    line-height: 1.5;
}

.benefit-item:hover p {
    color: var(--text-color);
}

.urgency-banner {
    background: var(--card-bg);
    border-radius: 20px;
    margin: 2rem 0;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px var(--shadow-color);
}

/* Footer */
.footer {
    background: var(--bg-primary);
    padding: 60px 0 20px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 40px;
    align-items: start;
}

.footer-logo {
    max-width: 200px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-on-dark);
    margin-bottom: 1rem;
}

.footer-column a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.25rem 0;
    font-size: 0.95rem;
    white-space: nowrap;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.footer-social a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem;
    white-space: nowrap;
}

.footer-social a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--accent);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-logo {
        max-width: none;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-social {
        width: 100%;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .cta-button i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .cta-button {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }

    .cta-button i {
        font-size: 1.3rem;
    }
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 0.4; }
    100% { transform: scale(1); opacity: 0.8; }
}

@keyframes floating {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 5px var(--primary-glow); }
    50% { box-shadow: 0 0 20px var(--primary-glow); }
    100% { box-shadow: 0 0 5px var(--primary-glow); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .features .container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 4rem 0;
        display: flex;
        align-items: center;
    }
    
    .hero-content {
        min-height: auto;
        padding: 0 1.5rem;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .headline-part {
        display: block;
        margin-bottom: 0.3rem;
    }
    
    .headline-part .gradient-text {
        display: block;
        margin-top: 0.5rem;
        padding: 0.5rem 0;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .features-preview {
        display: none;
        visibility: hidden;
        opacity: 0;
        height: 0;
        margin: 0;
        padding: 0;
        position: absolute;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .tech-badge {
        font-size: 0.9rem;
        margin-bottom: 2rem;
        padding: 0.6rem 1.2rem;
    }
    
    .features .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .feature-card h3 {
        min-height: auto;
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
    }

    .feature-card p {
        min-height: auto;
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .feature-list li {
        font-size: 1rem;
        margin-bottom: 0.75rem;
        white-space: normal;
    }

    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .features {
        padding: 4rem 0;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
        margin: 2rem 0;
        padding: 0 1rem;
    }

    .benefit-item {
        padding: 1.5rem;
    }

    .benefit-item .icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .benefit-item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .benefit-item p {
        font-size: 0.9rem;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0;
    }

    .hero-content h1 {
        font-size: 1.7rem;
        line-height: 1.2;
        margin-bottom: 1.25rem;
        padding: 0 0.75rem;
    }
    
    .headline-part {
        font-size: 1.7rem;
    }
    
    .headline-part .gradient-text {
        margin-top: 0.4rem;
        padding: 0.4rem 0;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .tech-badge {
        margin-bottom: 1.75rem;
    }
    
    .card-body {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
        padding: 1rem;
    }
    
    .card-feature {
        padding: 0.4rem;
    }
    
    .feature-icon {
        font-size: 1.6rem;
    }
    
    .feature-text {
        font-size: 0.8rem;
    }

    .benefits-grid {
        gap: 0.75rem;
        padding: 0 0.75rem;
    }

    .benefit-item {
        padding: 1rem;
    }

    .benefit-item .icon {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .benefit-item h4 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .benefit-item p {
        font-size: 0.8rem;
        line-height: 1.2;
    }
}

.cta-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-container.center {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 2rem;
}

.cta-container.center .cta-button {
    min-width: 300px;
    text-align: center;
}

.cta-container.center .button-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-container.center .button-content i {
    margin-right: 0.5rem;
}

.social-icon i {
    font-size: 1.5rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-icon:hover i {
    color: var(--accent);
    transform: scale(1.1);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
}

/* Botão Voltar ao Topo */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--text-primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(180, 161, 108, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(180, 161, 108, 0.4);
    background: var(--accent-light);
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: #128C7E;
}

.whatsapp-button i {
    font-size: 28px;
    color: white;
    z-index: 2;
    position: relative;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-primary);
    color: var(--text-on-dark);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--accent);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--bg-primary);
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* Pulse animation for WhatsApp button */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    animation: whatsapp-pulse 2s infinite;
}

/* Mobile responsiveness for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-button i {
        font-size: 24px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* Remove cookie consent styles */
.cookie-consent {
    display: none;
}

.health-era {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.era-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.era-content i {
    display: block;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.era-content h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.era-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .health-era {
        padding: 3rem 1rem;
    }

    .era-content h2 {
        font-size: 2rem;
    }

    .era-content p {
        font-size: 1.1rem;
    }
}

.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    background: rgba(13, 50, 54, 0.95);
    border-bottom: 1px solid var(--accent);
}

.nav-container .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand .logo {
    max-width: 180px;
    height: auto;
}

/* Logo switching based on background */
.logo-light {
    display: block;
}

.logo-dark {
    display: none;
}

/* Show white logo on dark backgrounds */
.nav-container .logo-dark,
.footer .logo-dark {
    display: block;
}

.nav-container .logo-light,
.footer .logo-light {
    display: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-on-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-auth {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-primary, .btn-secondary {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--accent);
    color: var(--text-light);
    border: 2px solid var(--accent);
}

.btn-primary:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(180, 161, 108, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--text-light);
    transform: translateY(-2px);
}

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--accent);
    transition: all 0.3s ease;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .nav-links.active,
    .nav-auth.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 12px var(--shadow-color);
        border-top: 1px solid var(--accent);
    }
    
    .nav-links.active {
        gap: 1.5rem;
    }
    
    .nav-auth.active {
        gap: 1rem;
        border-top: 1px solid var(--border-color);
        margin-top: 1rem;
        padding-top: 1rem;
    }
    
    .nav-mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 15px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-auth {
        display: none;
    }
    
    .nav-mobile-toggle {
        display: flex;
    }
    
    .logo {
        max-width: 150px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    /* Removed about-stats responsive styles */
    
    .cta-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
}

.subheadline {
    font-size: 1.5rem;
    color: var(--text-on-dark);
    max-width: 700px;
    margin-bottom: 40px;
    font-weight: 500;
}

.subheadline .line {
    display: block;
    margin-bottom: 0.5rem;
}

.subheadline .line.highlight {
    color: var(--accent);
    font-weight: 600;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .subheadline {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    
    .subheadline .line {
        margin-bottom: 0.3rem;
    }
}

.scarcity-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-primary);
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.scarcity-text .line {
    display: block;
    margin-top: 1.5rem;
    max-width: 700px;
}

.scarcity-text .highlight {
    color: var(--accent);
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .scarcity-text {
        font-size: 1.1rem;
        text-align: left;
        padding: 0 1rem;
    }
    
    .scarcity-text .line {
        margin-top: 1.2rem;
    }
    
    .urgency-banner {
        margin: 1.5rem 0;
    }
}

/* Versão 1 - Tab Style */
.urgency-banner.tab-style {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.15), rgba(51, 153, 255, 0.15));
    border-radius: 20px;
    padding: 0;
    margin: 2rem 0;
    border: 1px solid var(--primary-color);
    overflow: hidden;
}

.tab-header {
    background: var(--primary-color);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tab-icon {
    font-size: 1.5rem;
}

.tab-title {
    font-weight: 600;
    color: white;
}

.tab-content {
    padding: 2rem;
}

/* Versão 2 - Icon Style */
.urgency-banner.icon-style {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.15), rgba(51, 153, 255, 0.15));
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid var(--primary-color);
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.icon-item .icon {
    font-size: 2rem;
}

.icon-item .text {
    font-weight: 500;
    color: var(--text-color);
}

/* Versão 3 - Timeline Style */
.urgency-banner.timeline-style {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.15), rgba(51, 153, 255, 0.15));
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid var(--primary-color);
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-dot {
    position: absolute;
    left: -2.4rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: var(--primary-color);
    border: 2px solid white;
}

.timeline-dot.highlight {
    background: var(--primary-light);
    box-shadow: 0 0 10px var(--primary-light);
}

/* Versão 4 - Steps Style */
.urgency-banner.steps-style {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.15), rgba(51, 153, 255, 0.15));
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid var(--primary-color);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step.highlight .step-number {
    background: var(--primary-light);
    box-shadow: 0 0 10px var(--primary-light);
}

/* Versão 5 - Modern Card Style */
.urgency-banner.modern-style {
    background: var(--bg-primary);
    border: 1px solid var(--accent);
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(180, 161, 108, 0.2);
}

.modern-card {
    display: flex;
    flex-direction: column;
}

.card-header {
    background: var(--accent);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 2px 8px rgba(180, 161, 108, 0.3);
}

.card-icon {
    font-size: 2rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.card-body {
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    background: var(--bg-secondary);
    position: relative;
}

.card-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--border-color) 20%, 
        var(--border-color) 80%, 
        transparent 100%
    );
}

.card-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--accent);
    box-shadow: 0 4px 12px rgba(180, 161, 108, 0.3);
}

.card-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(0, 102, 204, 0.02) 50%,
        transparent 100%
    );
    animation: shine 3s infinite;
}

.card-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(180, 161, 108, 0.4);
    border-color: var(--accent-light);
    background: rgba(255, 255, 255, 0.95);
}

.card-feature:hover::before {
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(0, 102, 204, 0.05) 50%,
        transparent 100%
    );
}

.feature-icon {
    font-size: 2rem;
    color: var(--accent);
    transition: all 0.3s ease;
}

.card-feature:hover .feature-icon {
    transform: scale(1.1);
    color: var(--accent-light);
}

.feature-text {
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.card-feature:hover .feature-text {
    color: var(--accent);
}

.card-footer {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 0 0 20px 20px;
}

@media (max-width: 768px) {
    .card-body {
        padding: 1.5rem;
        gap: 1rem;
    }

    .card-feature {
        padding: 1rem;
    }

    .feature-icon {
        font-size: 1.8rem;
    }

    .feature-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .card-body {
        padding: 1rem;
        gap: 0.8rem;
    }

    .card-feature {
        padding: 0.8rem;
    }

    .feature-icon {
        font-size: 1.6rem;
    }

    .feature-text {
        font-size: 0.8rem;
    }
}

/* Legal Content */
.legal-content {
    max-width: 800px;
    margin: 120px auto 60px;
    padding: 40px;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 4px 12px var(--shadow-color);
    border: 1px solid var(--border-color);
} 