:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --text-color: #1f2937;
    --light-bg: #f8fafc;
    --border-color: #e5e7eb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Animações de entrada */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in {
    opacity: 0;
    transition: all 0.6s ease-out;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease-out;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease-out;
}

.animate-in {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

/* Delay nas animações */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */
header {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-demo {
    background: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.btn-demo:hover {
    background: var(--secondary-color);
}

/* Hero Section */
.hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(rgba(37, 99, 235, 0.75), rgba(30, 64, 175, 0.85)), 
                url('images/clinica-background.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 3.8rem;  /* Aumentado de 3.5rem */
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;  /* Adicionado espaçamento */
}

.hero-subtitle {
    font-size: 2rem;  /* Aumentado de 1.75rem */
    color: #e5e7eb;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.4rem;  /* Aumentado de 1.25rem */
    color: #f3f4f6;
    margin-bottom: 2.5rem;  /* Aumentado espaçamento */
    opacity: 0.95;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.2rem;  /* Aumentado tamanho do texto */
    padding: 1.2rem 2.5rem;  /* Aumentado padding */
}

.feature-badge i {
    color: #93c5fd;
    font-size: 1.4rem;  /* Aumentado tamanho do ícone */
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Sobre Section */
.sobre {
    padding: 6rem 0;
    background: white;
}

.sobre h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.125rem;
    color: #4b5563;
}

/* Centralizando títulos das seções */
.recursos h2,
.galeria h2,
.para-quem h2,
.planos h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Seção Recursos */
.recursos {
    padding: 6rem 0;
    background: var(--light-bg);
}

.recursos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.recurso-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.recurso-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    margin: 2rem auto;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.recurso-image:hover {
    transform: scale(1.02);
}

.recursos-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 4rem 0;
    gap: 2rem;
}

.recurso-card:hover {
    transform: translateY(-5px);
}

.recurso-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.recurso-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.recurso-card p {
    color: #6b7280;
    font-size: 0.95rem;
}

/*  */
.recurso-card p {
    color: #6b7280;
    font-size: 0.95rem;
}

/* Seção Galeria */
.galeria {
    padding: 6rem 0;
    background: white;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Alterado para 2 colunas fixas */
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Add this new style for the last item when it's alone */
.galeria-grid .galeria-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: 50%;
    margin: 0 auto;
}

.galeria-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    aspect-ratio: 16/9; /* Adiciona proporção fixa */
}

.galeria-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.galeria-image {
    width: 100%;
    height: 100%; /* Alterado de 'auto' para '100%' */
    display: block;
    object-fit: cover; /* Garante que a imagem cubra todo o espaço mantendo a proporção */
}

.galeria-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 1.5rem;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.galeria-item:hover .galeria-overlay {
    transform: translateY(0);
}

.galeria-overlay h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.galeria-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .galeria-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
}

/* Seção Para Quem */
.para-quem {
    padding: 6rem 0;
    background: white;
}

.profissionais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.profissional-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.profissional-card:hover {
    background: var(--primary-color);
    color: white;
}

.profissional-card:hover i {
    color: white;
}

.profissional-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.profissional-card span {
    font-weight: 500;
    font-size: 1.1rem;
}

/* Seção Planos */
.planos {
    padding: 6rem 0;
    background: var(--light-bg);
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Alterado para melhor responsividade */
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

/* Ajuste para telas menores */
@media (max-width: 1200px) {
    .planos-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .planos-grid {
        grid-template-columns: 1fr;
    }
    
    .plano-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

.plano-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.plano-header {
    background: var(--primary-color);
    color: white;
    padding: 2rem 1.5rem;
    text-align: center;
}

/* Ajuste específico para o texto dos profissionais */
.plano-header p {
    font-size: 0.95rem;  /* Novo: reduzindo o tamanho do texto de profissionais */
    line-height: 1.2;
    margin-top: 0.5rem;
}

.plano-features {
    padding: 2rem;
    list-style: none;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plano-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Remover estes blocos de estilos */
.btn-ver-planos {
    background: var(--primary-color);
    color: white;
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-ver-planos:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-plano {
    display: block;
    text-align: center;
    padding: 1rem 2rem;
    margin: 1rem 2rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    align-self: stretch;
}

.btn-plano:hover {
    background: var(--secondary-color);
}

/* Responsividade */
@media (max-width: 768px) {
    /* Menu Mobile */
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .btn-demo {
        width: 100%;
        text-align: center;
    }

    /* Ajustes de grid para mobile */
    .recursos-grid,
    .profissionais-grid,
    .planos-grid {
        grid-template-columns: 1fr;
    }
    
    .plano-card {
        max-width: 400px;
        margin: 0 auto;
    }

    /* Ajustes do plano popular em mobile */
    .plano-card.popular {
        transform: scale(1.02);
    }
    
    .plano-card.popular:hover {
        transform: scale(1.04);
    }

    /* Ajustes da seção hero para mobile */
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    /* Hero Section - Buttons */
    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .btn-primary, .btn-secondary, .btn-ver-planos {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 1.2rem 2.8rem;
        font-size: 1.1rem;
        font-weight: 600;
        text-decoration: none;
        border-radius: 50px;
        transition: all 0.3s ease;
        min-width: 200px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .btn-primary {
        background: white;
        color: var(--primary-color);
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    }

    .btn-ver-planos {
        background: var(--primary-color);
        color: white;
        border: 2px solid white;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .btn-primary:hover, .btn-ver-planos:hover, .btn-secondary:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }

    .btn-primary:hover {
        background: #f8fafc;
    }

    .btn-ver-planos:hover {
        background: var(--secondary-color);
        border-color: var(--secondary-color);
    }

    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    @media (max-width: 768px) {
        .cta-buttons {
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            padding: 0 1rem;
        }

        .btn-primary, .btn-secondary, .btn-ver-planos {
            width: 100%;
            max-width: 280px;
        }
    }
}

/* Menu Toggle (fora do media query) */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Ajustes gerais de layout */
.container {
    padding: 0 1rem;
}

section {
    overflow: hidden;
}

/* Correções de animação */
.feature-card, .recurso-card, .profissional-card, .plano-card {
    opacity: 1;
    transform: translateY(0);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Ajustes do footer */
footer {
    background: var(--light-bg);
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.preco {
    text-align: center;
    margin: 1rem 0;
}

.preco .valor {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.preco .periodo {
    font-size: 1rem;
    opacity: 0.9;
}

.plano-card.destaque {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.15);
}

.plano-card.destaque::before {
    content: "Mais Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.plano-card.destaque:hover {
    transform: scale(1.07);
}

.recurso-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    margin: 2rem auto;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.recurso-image:hover {
    transform: scale(1.02);
}

.recursos-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 4rem 0;
    gap: 2rem;
}

.recurso-card:hover {
    transform: translateY(-5px);
}

.recurso-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.recurso-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.recurso-card p {
    color: #6b7280;
    font-size: 0.95rem;
}

/* Seção Para Quem */
.para-quem {
    padding: 6rem 0;
    background: white;
}

.profissionais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.profissional-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.profissional-card:hover {
    background: var(--primary-color);
    color: white;
}

.profissional-card:hover i {
    color: white;
}

.profissional-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.profissional-card span {
    font-weight: 500;
    font-size: 1.1rem;
}

/* Seção Planos */
.planos {
    padding: 6rem 0;
    background: var(--light-bg);
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* Alterado para 5 colunas fixas */
    gap: 1rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Ajuste para telas menores */
@media (max-width: 1200px) {
    .planos-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .planos-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .plano-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

.plano-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Ajuste específico para o texto dos profissionais */
.plano-header p {
    font-size: 0.95rem;  /* Novo: reduzindo o tamanho do texto de profissionais */
    line-height: 1.2;
    margin-top: 0.5rem;
}

.plano-features {
    padding: 2rem;
    list-style: none;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plano-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Remover estes blocos de estilos */
.btn-ver-planos {
    background: var(--primary-color);
    color: white;
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-ver-planos:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-plano {
    display: block;
    text-align: center;
    padding: 1rem 2rem;
    margin: 1rem 2rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    align-self: stretch;
}

.btn-plano:hover {
    background: var(--secondary-color);
}

/* Responsividade */
@media (max-width: 768px) {
    /* Menu Mobile */
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .btn-demo {
        width: 100%;
        text-align: center;
    }

    /* Ajustes de grid para mobile */
    .recursos-grid,
    .profissionais-grid,
    .planos-grid {
        grid-template-columns: 1fr;
    }

    /* Ajustes do plano popular em mobile */
    .plano-card.popular {
        transform: scale(1.02);
    }
    
    .plano-card.popular:hover {
        transform: scale(1.04);
    }

    /* Ajustes da seção hero para mobile */
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    /* Hero Section - Buttons */
    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .btn-primary, .btn-secondary, .btn-ver-planos {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 1.2rem 2.8rem;
        font-size: 1.1rem;
        font-weight: 600;
        text-decoration: none;
        border-radius: 50px;
        transition: all 0.3s ease;
        min-width: 200px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .btn-primary {
        background: white;
        color: var(--primary-color);
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    }

    .btn-ver-planos {
        background: var(--primary-color);
        color: white;
        border: 2px solid white;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .btn-primary:hover, .btn-ver-planos:hover, .btn-secondary:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }

    .btn-primary:hover {
        background: #f8fafc;
    }

    .btn-ver-planos:hover {
        background: var(--secondary-color);
        border-color: var(--secondary-color);
    }

    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    @media (max-width: 768px) {
        .cta-buttons {
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            padding: 0 1rem;
        }

        .btn-primary, .btn-secondary, .btn-ver-planos {
            width: 100%;
            max-width: 280px;
        }
    }
}

/* Menu Toggle (fora do media query) */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Ajustes gerais de layout */
.container {
    padding: 0 1rem;
}

section {
    overflow: hidden;
}

/* Correções de animação */
.feature-card, .recurso-card, .profissional-card, .plano-card {
    opacity: 1;
    transform: translateY(0);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Ajustes do footer */
footer {
    background: var(--light-bg);
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.preco .valor {
    font-size: 2.4rem;  /* Reduzido de 2.8rem para 2.4rem */
    font-weight: 800;
    line-height: 1;
    color: white;
    margin-bottom: 0.5rem;
}

.preco .periodo {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

.plano-card.destaque {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.15);
}

.plano-card.destaque::before {
    content: "Mais Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.plano-card.destaque:hover {
    transform: scale(1.07);
}

.recurso-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    margin: 2rem auto;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.recurso-image:hover {
    transform: scale(1.02);
}

.recursos-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 4rem 0;
    gap: 2rem;
}

.recurso-card:hover {
    transform: translateY(-5px);
}

.recurso-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.recurso-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.recurso-card p {
    color: #6b7280;
    font-size: 0.95rem;
}

/* Seção Para Quem */
.para-quem {
    padding: 6rem 0;
    background: white;
}

.profissionais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.profissional-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.profissional-card:hover {
    background: var(--primary-color);
    color: white;
}

.profissional-card:hover i {
    color: white;
}

.profissional-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.profissional-card span {
    font-weight: 500;
    font-size: 1.1rem;
}

/* Seção Planos */
.planos {
    padding: 6rem 0;
    background: var(--light-bg);
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin: 3rem auto;
    max-width: 1200px;
    padding: 0 2rem;
}

.plano-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Ajuste para telas menores */
@media (max-width: 1200px) {
    .planos-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .planos-grid {
        grid-template-columns: 1fr;
    }
    
    .plano-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

.plano-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Ajuste específico para o texto dos profissionais */
.plano-header p {
    font-size: 0.95rem;  /* Novo: reduzindo o tamanho do texto de profissionais */
    line-height: 1.2;
    margin-top: 0.5rem;
}

.plano-features {
    padding: 2rem;
    list-style: none;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plano-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Remover estes blocos de estilos */
.btn-ver-planos {
    background: var(--primary-color);
    color: white;
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-ver-planos:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-plano {
    display: block;
    text-align: center;
    padding: 1rem 2rem;
    margin: 1rem 2rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    align-self: stretch;
}

.btn-plano:hover {
    background: var(--secondary-color);
}

/* Responsividade */
@media (max-width: 768px) {
    /* Menu Mobile */
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .btn-demo {
        width: 100%;
        text-align: center;
    }

    /* Ajustes de grid para mobile */
    .recursos-grid,
    .profissionais-grid,
    .planos-grid {
        grid-template-columns: 1fr;
    }
    
    .plano-card {
        max-width: 400px;
        margin: 0 auto;
    }

    /* Ajustes do plano popular em mobile */
    .plano-card.popular {
        transform: scale(1.02);
    }
    
    .plano-card.popular:hover {
        transform: scale(1.04);
    }

    /* Ajustes da seção hero para mobile */
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    /* Hero Section - Buttons */
    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .btn-primary, .btn-secondary, .btn-ver-planos {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 1.2rem 2.8rem;
        font-size: 1.1rem;
        font-weight: 600;
        text-decoration: none;
        border-radius: 50px;
        transition: all 0.3s ease;
        min-width: 200px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .btn-primary {
        background: white;
        color: var(--primary-color);
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    }

    .btn-ver-planos {
        background: var(--primary-color);
        color: white;
        border: 2px solid white;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .btn-primary:hover, .btn-ver-planos:hover, .btn-secondary:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }

    .btn-primary:hover {
        background: #f8fafc;
    }

    .btn-ver-planos:hover {
        background: var(--secondary-color);
        border-color: var(--secondary-color);
    }

    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    @media (max-width: 768px) {
        .cta-buttons {
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            padding: 0 1rem;
        }

        .btn-primary, .btn-secondary, .btn-ver-planos {
            width: 100%;
            max-width: 280px;
        }
    }
}

/* Menu Toggle (fora do media query) */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Ajustes gerais de layout */
.container {
    padding: 0 1rem;
}

section {
    overflow: hidden;
}

/* Correções de animação */
.feature-card, .recurso-card, .profissional-card, .plano-card {
    opacity: 1;
    transform: translateY(0);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Ajustes do footer */
footer {
    background: var(--light-bg);
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.preco .periodo {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

.plano-card.destaque {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.15);
}

.plano-card.destaque::before {
    content: "Mais Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.plano-card.destaque:hover {
    transform: scale(1.07);
}

.recurso-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    margin: 2rem auto;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.recurso-image:hover {
    transform: scale(1.02);
}

.recursos-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 4rem 0;
    gap: 2rem;
}

.recurso-card:hover {
    transform: translateY(-5px);
}

.recurso-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.recurso-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.recurso-card p {
    color: #6b7280;
    font-size: 0.95rem;
}

/* Seção Para Quem */
.para-quem {
    padding: 6rem 0;
    background: white;
}

.profissionais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.profissional-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.profissional-card:hover {
    background: var(--primary-color);
    color: white;
}

.profissional-card:hover i {
    color: white;
}

.profissional-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.profissional-card span {
    font-weight: 500;
    font-size: 1.1rem;
}

/* Seção Planos */
.planos {
    padding: 6rem 0;
    background: var(--light-bg);
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* Alterado para 5 colunas fixas */
    gap: 1rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Ajuste para telas menores */
@media (max-width: 1200px) {
    .planos-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .planos-grid {
        grid-template-columns: 1fr;
    }
    
    .plano-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

.plano-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Ajuste específico para o texto dos profissionais */
.plano-header p {
    font-size: 0.95rem;  /* Novo: reduzindo o tamanho do texto de profissionais */
    line-height: 1.2;
    margin-top: 0.5rem;
}

.plano-features {
    padding: 2rem;
    list-style: none;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plano-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Remover estes blocos de estilos */
.btn-ver-planos {
    background: var(--primary-color);
    color: white;
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-ver-planos:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-plano {
    display: block;
    text-align: center;
    padding: 1rem 2rem;
    margin: 1rem 2rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    align-self: stretch;
}

.btn-plano:hover {
    background: var(--secondary-color);
}

/* Responsividade */
@media (max-width: 768px) {
    /* Menu Mobile */
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .btn-demo {
        width: 100%;
        text-align: center;
    }

    /* Ajustes de grid para mobile */
    .recursos-grid,
    .profissionais-grid,
    .planos-grid {
        grid-template-columns: 1fr;
    }
    
    .plano-card {
        max-width: 400px;
        margin: 0 auto;
    }

    /* Ajustes do plano popular em mobile */
    .plano-card.popular {
        transform: scale(1.02);
    }
    
    .plano-card.popular:hover {
        transform: scale(1.04);
    }

    /* Ajustes da seção hero para mobile */
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    /* Hero Section - Buttons */
    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .btn-primary, .btn-secondary, .btn-ver-planos {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 1.2rem 2.8rem;
        font-size: 1.1rem;
        font-weight: 600;
        text-decoration: none;
        border-radius: 50px;
        transition: all 0.3s ease;
        min-width: 200px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .btn-primary {
        background: white;
        color: var(--primary-color);
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    }

    .btn-ver-planos {
        background: var(--primary-color);
        color: white;
        border: 2px solid white;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .btn-primary:hover, .btn-ver-planos:hover, .btn-secondary:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }

    .btn-primary:hover {
        background: #f8fafc;
    }

    .btn-ver-planos:hover {
        background: var(--secondary-color);
        border-color: var(--secondary-color);
    }

    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    @media (max-width: 768px) {
        .cta-buttons {
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            padding: 0 1rem;
        }

        .btn-primary, .btn-secondary, .btn-ver-planos {
            width: 100%;
            max-width: 280px;
        }
    }
}

/* Menu Toggle (fora do media query) */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Ajustes gerais de layout */
.container {
    padding: 0 1rem;
}

section {
    overflow: hidden;
}

/* Correções de animação */
.feature-card, .recurso-card, .profissional-card, .plano-card {
    opacity: 1;
    transform: translateY(0);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Ajustes do footer */
footer {
    background: var(--light-bg);
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.preco .periodo {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

.plano-card.destaque {
    transform: scale(1.05);
    border: 2px solid var(--primary-color);
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.15);
}

.plano-card.destaque::before {
    content: "Mais Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.plano-card.destaque:hover {
    transform: scale(1.07);
}

.recurso-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    margin: 2rem auto;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.recurso-image:hover {
    transform: scale(1.02);
}

.recursos-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 4rem 0;
    gap: 2rem;
}

.recurso-card:hover {
    transform: translateY(-5px);
}

.recurso-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.recurso-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.recurso-card p {
    color: #6b7280;
    font-size: 0.95rem;
}

/* Seção Para Quem */
.para-quem {
    padding: 6rem 0;
    background: white;
}

.profissionais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.profissional-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.profissional-card:hover {
    background: var(--primary-color);
    color: white;
}

.profissional-card:hover i {
    color: white;
}

.profissional-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.profissional-card span {
    font-weight: 500;
    font-size: 1.1rem;
}

/* Seção Planos */
.planos {
    padding: 6rem 0;
    background: var(--light-bg);
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* Alterado para 5 colunas fixas */
    gap: 1rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Ajuste para telas menores */
@media (max-width: 1200px) {
    .planos-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .planos-grid {
        grid-template-columns: 1fr;
    }
    
    .plano-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

.plano-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Ajuste específico para o texto dos profissionais */
.plano-header p {
    font-size: 0.95rem;  /* Novo: reduzindo o tamanho do texto de profissionais */
    line-height: 1.2;
    margin-top: 0.5rem;
}

.plano-features {
    padding: 2rem;
    list-style: none;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-bubble {
    position: absolute;
    right: 80px;
    bottom: 10px;
    background: white;
    padding: 12px 20px;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    font-size: 14px;
    max-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.whatsapp-bubble:after {
    content: "";
    position: absolute;
    right: -8px;
    bottom: 15px;
    width: 0;
    height: 0;
    border-left: 10px solid white;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.whatsapp-icon {
    display: block;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.whatsapp-icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    color: white;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
}

.whatsapp-icon:hover + .whatsapp-bubble {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Responsividade do WhatsApp */
@media (max-width: 768px) {
    .whatsapp-bubble {
        display: none;
    }
    
    .whatsapp-icon {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-icon i {
        font-size: 28px;
    }
}