/* ============================================
   ATENDIMENTO AVATAR - LANDING PAGES
   Estilos específicos para as páginas de atendimento
   segmentadas por avatar (pais, jovens, treinadores)
   ============================================ */

/* Avatar Selector */
.avatar-selector {
    background: #f8f9fa;
    padding: 1.5rem 0;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.avatar-selector p {
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

.avatar-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.avatar-options .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.avatar-options .btn-secondary {
    background: #fff;
    color: #333;
    border: 2px solid #ddd;
}

.avatar-options .btn-secondary:hover {
    border-color: #0056b3;
    color: #0056b3;
}

/* Section Padding */
.section-padding {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Dores Grid */
.dores-pais,
.dores-jovens,
.dores-treinadores {
    background: #f8f9fa;
}

.dores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.dor-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

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

.dor-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.75rem;
}

.dor-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.dores-footer {
    text-align: center;
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
}

/* Benefícios Grid */
.beneficios-pais,
.beneficios-jovens,
.beneficios-treinadores {
    background: #fff;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.beneficio-card {
    background: #f0f7ff;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #0056b3;
    transition: transform 0.3s ease;
}

.beneficio-card:hover {
    transform: translateX(8px);
}

.beneficio-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #003d82;
    margin-bottom: 0.75rem;
}

.beneficio-card p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}

/* Sobre Márcia Resumido */
.sobre-marcia-resumido {
    background: #f8f9fa;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.sobre-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.sobre-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.25rem;
}

.sobre-content .crp {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.sobre-content p {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.sobre-content ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.sobre-content ul li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.5rem;
    padding-left: 0;
}

/* CTA Final */
.cta-final {
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    color: #fff;
}

.cta-final .section-title,
.cta-final .section-subtitle {
    color: #fff;
}

.cta-card {
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.cta-card .preco-valor {
    font-size: 3rem;
    font-weight: 700;
    color: #0056b3;
    margin-bottom: 0.5rem;
}

.cta-card .preco-duracao {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.cta-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.cta-card ul li {
    font-size: 1rem;
    color: #444;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.cta-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0056b3;
    font-weight: 700;
}

.cta-card .btn {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.cta-garantia {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .dores-grid,
    .beneficios-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .avatar-options {
        flex-direction: column;
        align-items: stretch;
    }

    .avatar-options .btn {
        width: 100%;
    }

    .cta-card {
        padding: 2rem;
    }

    .cta-card .preco-valor {
        font-size: 2.5rem;
    }
}
