/* ========================================================== */
/* --- ARQUIVO: index.css (VERSÃO FINAL E OTIMIZADA) --- */
/* ========================================================== */

/* [INÍCIO] ANIMAÇÕES GLOBAIS E KEYFRAMES */
.animated-section.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes hero-zoom-out {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}

@keyframes content-fade-in-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* [FIM] ANIMAÇÕES GLOBAIS E KEYFRAMES */


/* ========================================================== */
/* [INÍCIO] SEÇÃO HERO (VERSÃO DEFINITIVA "CRISTAL LEITOSO") */
/* ========================================================== */

.hero-revamped {
    position: relative;
    height: 100vh;
    min-height: 750px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #20002d;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    animation: hero-zoom-out 25s infinite alternate;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 5s; }
.hero-slide:nth-child(3) { animation-delay: 10s; }
.hero-slide:nth-child(4) { animation-delay: 15s; }
.hero-slide:nth-child(5) { animation-delay: 20s; }

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.563) 0%,
        rgba(0, 0, 0, 0.37) 30%,
        rgba(0, 0, 0, 0.27) 70%,
        rgb(0, 0, 0) 100%
    );
}

.hero-content-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
}

.hero-text-content {
    flex-basis: 55%;
    text-align: left;
    opacity: 0;
    animation: content-fade-in-up 1s 0.5s forwards;
}

.hero-title {
    font-size: 4.5rem;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.823);
}

.hero-subtitle {
    font-size: 1.4rem;
    max-width: 500px;
    color: #e0e0e0;
    font-weight: 400;
    text-shadow: 0px 2px 10px rgba(0,0,0,0.6);
}

.hero-cta-panel {
    flex-basis: 40%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    animation: content-fade-in-up 1s 0.8s forwards;
}

.hero-cta-panel .cta-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.hero-cta-panel .cta-info-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.hero-cta-panel .cta-info-item p {
    line-height: 1.5;
    margin: 0;
    text-align: left;
    color: var(--text-color);
}

.hero-cta-panel .cta-info-item p strong {
    font-size: 1.1rem;
    color: var(--dark-color);
}

.hero-cta-panel .btn-impact {
    width: 100%;
}
/* [FIM] SEÇÃO HERO */


/* ========================================================== */
/* [INÍCIO] BOTÃO DE IMPACTO (ESTILO PADRÃO) */
/* ========================================================== */
.btn-impact {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 22px 48px;
    font-family: var(--font-headings);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white-color);
    text-decoration: none;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}

.btn-impact:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.btn-impact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-25deg);
    transition: left 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-impact:hover::before {
    left: 125%;
}
/* [FIM] BOTÃO DE IMPACTO */


/* ========================================================== */
/* [INÍCIO] SEÇÃO "COMO FUNCIONA" */
/* ========================================================== */
.feature-section { padding: 80px 0; background-color: var(--white-color); }
.steps-container { display: flex; justify-content: space-between; gap: 30px; margin-top: 50px; }

.step-card {
    text-align: center;
    padding: 30px;
    transition: transform 0.3s ease;
}
.step-card:hover {
    transform: translateY(-8px);
}

.step-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.step-card:hover .step-icon {
    transform: scale(1.15) rotate(-8deg);
}

.step-card h3 {
    font-family: var(--font-headings);
    color: var(--dark-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
}
/* [FIM] SEÇÃO "COMO FUNCIONA" */


/* ========================================================== */
/* [INÍCIO] SEÇÃO DE CATEGORIAS */
/* ========================================================== */
.category-section { padding: 80px 0; background-color: #f8f9fa; }
.category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 25px; }
.category-card {
    background-color: var(--white-color);
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    padding: 40px 20px;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(93, 0, 255, 0.1);
    border-color: var(--primary-color);
}
.category-card i { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 15px; transition: transform 0.3s ease; }
.category-card:hover i { transform: scale(1.2); }
.category-card h3 { font-family: var(--font-headings); color: var(--dark-color); font-size: 1.2rem; }
/* [FIM] SEÇÃO DE CATEGORIAS */


/* ========================================================== */
/* [INÍCIO] SEÇÃO DE DEPOIMENTOS */
/* ========================================================== */
.testimonial-section { padding: 100px 0; background-color: var(--white-color); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.testimonial-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 8px 30px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}
.testimonial-text { font-style: italic; margin-bottom: 20px; font-size: 1.1rem; }
.testimonial-author { font-weight: 700; color: var(--dark-color); }
/* [FIM] SEÇÃO DE DEPOIMENTOS */


/* ========================================================== */
/* [INÍCIO] CTA PARA PROFISSIONAIS (SEÇÃO COM BOTÃO CORRIGIDO) */
/* ========================================================== */
.cta-section {
    background-color: #f0f2f5;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(0,0,0,0.04) 1px, transparent 0);
    background-size: 20px 20px;
    padding: 100px 0;
    text-align: center;
    border-top: 1px solid #e9ecef;
}
.cta-title {
    font-family: var(--font-headings);
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}
.cta-text {
    max-width: 650px;
    margin: 0 auto 50px auto;
    color: var(--text-color);
    font-size: 1.15rem;
    line-height: 1.6;
}
/* CORREÇÃO DO BOTÃO LARGO */
.cta-section .btn-impact {
    width: auto; /* Permite que o botão se ajuste ao conteúdo */
}
/* [FIM] CTA PARA PROFISSIONAIS */


/* ========================================================== */
/* [INÍCIO] SEÇÃO DE CATEGORIAS (COM DESIGN UNIFICADO) */
/* ========================================================== */

.category-section { 
    padding: 100px 0; 
    background-color: #f8f9fa; 
}

.category-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); 
    gap: 25px; 
}

/* O CARD DE CATEGORIA COM O NOVO VISUAL */
.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    
    /* FUNDO BRANCO E BORDAS ARREDONDADAS */
    background-color: var(--white-color);
    border-radius: 24px;

    /* EFEITO 3D E SOMBRA MARCANTE */
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 4px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);

    transition: transform 0.3s ease, box-shadow 0.3s ease, border-bottom-width 0.2s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(93, 0, 255, 0.15);
}

.category-card:active {
    transform: translateY(-2px);
    border-bottom-width: 2px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.category-card i { 
    font-size: 2.5rem; 
    color: var(--primary-color); 
    margin-bottom: 20px; 
    transition: transform 0.3s ease; 
}

.category-card:hover i { 
    transform: scale(1.15); 
}

.category-card h3 { 
    font-family: var(--font-headings); 
    color: var(--dark-color); 
    font-size: 1.2rem; 
    font-weight: 700;
}
/* [FIM] SEÇÃO DE CATEGORIAS */