:root {
    /* Cores Originais */
    --color-primary: #0f2537;
    --color-primary-light: #1a3c57;
    --color-gold: #fccb06;
    --color-gold-hover: #e5b805;
    
    --bg-light: #ffffff;
    --bg-off-white: #f8f9fa;
    --bg-dark: #091621;
    
    --text-heading: #bdd7ec;
    --text-body: #5a6472;
    --text-white: #ffffff;

    /* Cores Novas (ADIN) */
    --adin-bg-gradient: linear-gradient(180deg, #FDFBF7 0%, #F5F1EA 100%);
    --adin-blue: #1F3A56;
    --adin-yellow: #EAC458;
    --adin-text: #334155;
    --adin-white: #FFFFFF;
    --adin-border-hover: #F2C94C;

    /* Sombras */
    --shadow-soft: 0 15px 35px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 25px 50px rgba(0, 0, 0, 0.12);
    
    /* Layout & Espaçamento */
    --container-width: 1200px;
    --section-spacing: 120px;
    --element-spacing: 2rem;
}

/* --- Reset e Base --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', serif;
    color: var(--text-body);
    line-height: 1.8;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', serif;
    line-height: 1.0;
    margin-bottom: 1.0rem;
}

a { text-decoration: none; transition: all 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- Utilitários --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

.section-padding { padding: var(--section-spacing) 0; }
.bg-off-white { background-color: var(--bg-off-white); }
.bg-primary { background-color: var(--color-primary); }
.text-white { color: var(--text-white); }

/* --- Animações --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease-out;
}
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* --- Botões --- */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Montserrat', serif;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-gold {
    background-color: var(--color-gold);
    color: var(--color-primary);
    box-shadow: 0 5px 20px rgba(252, 203, 6, 0.3);
}

.btn-gold:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(252, 203, 6, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    margin-left: 15px;
}
.btn-outline:hover { background: #fff; color: var(--color-primary); }

.btn-text {
    color: var(--color-primary);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-text:hover { gap: 15px; color: var(--color-gold-hover); }

/* --- Header --- */
header {
    background: #fff;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);

}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Montserrat', serif;
    font-weight: 500;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 2px;
}
.logo-white { color: #fff; }
.logo-icon { color: var(--color-gold); }

.nav-links { display: flex; gap: 40px; }
.nav-links a {
    color: #032B3B;
    font-weight: 500;
    font-size: 0.95rem;
}
.nav-links a:hover { color: var(--color-gold-hover); }
.mobile-menu-icon { display: none; cursor: pointer; font-size: 1.5rem; }
.mobile-only { display: none; }

/* --- Hero Section OTIMIZADO PARA LCP --- */
.hero {
   position: relative;
    /* Reduzi para 60px em cima e embaixo. 
       Isso cria o efeito de "faixa" compacta. */
    padding: 40px 0; 
    
    color: var(--text-white);
    background-color: var(--color-primary);
    overflow: hidden;
    
    /* Garante que a altura seja apenas o necessário para o texto caber */
    min-height: auto; 
    
    
}

/* Opcional: Ajustar o tamanho da fonte do título para acompanhar o banner menor */
.hero h1 {
    margin-bottom: 2px;
    font-size: clamp(1rem, 4vw, 3.5rem); /* Levemente menor */
}

.hero p {
    margin-bottom: 30px; /* Menos espaço embaixo do texto */
}

.hero-bg-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
   
}

.hero-container-content {
    position: relative;
    z-index: 2;
}

.hero-content { max-width: 730px; }

.hero h1 {
    font-size: clamp(2rem, 3vw, 3.5rem);
    margin-bottom: 30px;
    line-height: 1.15;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 650px;
    margin-bottom: 50px;
    font-family: 'montserrat', serif;
}

/* --- Section Headers --- */
.section-header {
    font-family: 'Montserrat', serif;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}
.section-header.align-left { text-align: left; margin: 0 0 40px; }

.section-header span {
    color: var(--color-gold-hover);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 15px;
}
.section-header h2 { font-size: 2.5rem; margin-bottom: 0; }

/* --- Split Section (Sobre / FAQ) --- */
.section-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}
.align-top { align-items: flex-start; }

.img-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-soft);
    position: relative;
    margin-top: 100px;
}
.img-placeholder::before {
    content: '';
    position: absolute;
    top: -20px; left: -20px;
    width: 100%; height: 100%;
    border: 2px solid var(--color-gold);
    border-radius: 20px;
    z-index: -1;
}

.text-block p { margin-bottom: 25px; font-size: 1.05rem; }

/* --- Cursos --- */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.course-card {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

.course-bg {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.course-card:hover .course-bg { transform: scale(1.1); }

.course-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(15, 37, 55, 1) 5%, rgba(15, 37, 55, 0.7) 40%, rgba(15, 37, 55, 0) 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 50px 40px;
}

.course-card h3 { color: white; font-size: 2.2rem; margin-bottom: 15px; }
.course-tag {
    color: var(--color-gold); font-weight: 700; text-transform: uppercase;
    font-size: 0.75rem; letter-spacing: 1.5px;
    background: rgba(255,255,255,0.1); padding: 8px 16px; border-radius: 6px;
    display: inline-block; margin-bottom: 20px; backdrop-filter: blur(5px);
}
.course-link {
    color: white; font-weight: 600; margin-top: 20px;
    display: inline-flex; align-items: center; gap: 10px;
    opacity: 0; transform: translateY(20px); transition: all 0.4s ease;
}
.course-card:hover .course-link { opacity: 1; transform: translateY(0); }

/* --- FAQ --- */
.faq-item {
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 0px;
}

.faq-question {
    width: 100%; text-align: left; padding: 25px 0; height: 60px;
    background: none; border: none;
    font-size: 1.2rem; font-family: 'Montserrat', serif;
    font-weight: 600; color: var(--color-primary);
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    transition: color 0.3s;
}
.faq-question:hover { color: var(--color-gold-hover); }

.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out;
    color: var(--text-body);
}
.faq-answer p { padding-bottom: 30px; }

/* --- Contato --- */


.contact-form .form-group { margin-bottom: 20px; }

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-family: 'Montserrat', serif;
    font-size: 1rem;
    background: #f8f9fa;
    transition: 0.3s;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(252, 203, 6, 0.1);
}

.info-item { 
    display: flex; 
    gap: 20px; 
    margin-bottom: 30px; 
    align-items: center;     /* Centraliza verticalmente (alinha ícone com texto) */
    justify-content: center; /* <--- ADICIONADO: Centraliza horizontalmente na página */
}
.info-item i { font-size: 1.5rem; color: var(--color-gold); margin-top: 5px; }
.info-item h4 { font-family: 'Montserrat', serif; font-size: 1.2rem; margin-bottom: 5px; color: var(--color-primary); }

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* --- Footer --- */
footer {
    background-color: #013147;
    color: #ffffff; 
    padding: 50px 0 20px;
}

.copyright {
    border-top: 1px solid rgb(255, 255, 255);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    color: #ffffff; 
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-heading { color: white; margin-bottom: 30px; font-family: 'Montserrat', serif; font-size: 1.3rem; }

.footer-links a {
    color: #94a3b8; display: block; margin-bottom: 15px; transition: 0.3s;
}
.footer-links a:hover { color: var(--color-gold); padding-left: 5px; }
.footer-links i { margin-right: 10px; color: var(--color-gold); }

.social-links { display: flex; gap: 20px; margin-top: 25px; }
.social-links a { color: white; font-size: 1.4rem; transition: 0.3s; }
.social-links a:hover { color: var(--color-gold); transform: translateY(-3px); }

.copyright {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    color: #ffffff;
}

/* --- Floating Whatsapp --- */
.whatsapp-float {
    position: fixed; width: 65px; height: 65px;
    bottom: 40px; right: 40px;
    background-color: #25d366; color: #FFF;
    border-radius: 50px; text-align: center;
    font-size: 32px; box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 999; display: flex; align-items: center; justify-content: center;
    transition: all 0.3s; animation: pulse 2s infinite;
}
.whatsapp-float:hover { background-color: #20ba5a; transform: scale(1.1); }

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- Responsividade Geral --- */
@media (max-width: 992px) {
    .section-split { gap: 50px; }
    .hero h1 { font-size: 3.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 50px; }
    .container { padding: 0 20px; }
    .hero h1 { font-size: 3rem; }
}

@media (max-width: 700px) {
    :root { --section-spacing: 80px; }
    .btn-header { display: none; }
    .mobile-menu-icon { display: block; }
    .mobile-only { display: block; margin-top: 10px; }

    /* Menu Mobile */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        text-align: center;
        gap: 25px;
        border-top: 1px solid #f0f0f0;
    }
    
    .nav-links.active { display: flex; animation: slideDown 0.3s ease forwards; }
    
    .section-split { grid-template-columns: 1fr; }
    .img-placeholder { height: 350px; order: -1; }
    
    .hero { padding: 120px 0 80px; text-align: center; }
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1rem; margin-bottom: 30px; }
    .hero-content { margin: 0 auto; }
    .hero-btns { display: flex; flex-direction: column; gap: 15px; }
    .btn-outline { margin-left: 0; }
    
    .section-header h2 { font-size: 2rem; }
    .whatsapp-float { width: 55px; height: 55px; font-size: 28px; right: 20px; bottom: 20px; }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   NOVAS SEÇÕES (Vision, Differentials, Stats, Testimonials)
   ========================================= */

/* --- Seção Vision (Substitui Sobre) --- */
.section-vision {
    padding: 100px 20px;
    background-color: #fff;
    overflow: visible;
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.col-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 20px;
}

.small-img {
    width: 100%;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.small-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-content .title-serif {
    font-family: 'Montserrat', serif;
    font-size: 1.0rem;
    color: #1F3A56;
    margin-bottom: 15px;
    font-weight: 400;
}

.text-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    max-width: 95%;
}

.col-right {
    position: relative;
    height: auto;
}

.large-img {
    width: 70%;
    height: 500px; 
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    margin-left: -65px;
}

.large-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.overlay-gradient {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(31, 58, 86, 0.5), transparent);
}

.float-card {
    position: absolute;
    bottom: 30px; 
    right: -30px;
    width: 280px;
    height: 360px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    display: flex;
    align-items: flex-end;
  
}

.card-bg-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.card-inner {
    position: relative;
    z-index: 2;
    padding: 25px;
    width: 100%;
    background: linear-gradient(to top, rgba(24, 48, 72, 0.9) 20%, transparent); 
    color: #fff;
}

.card-inner h3 {
    font-family: 'Montserrat', serif;
    font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: 8px;
    font-weight: 700;
}

.card-inner p {
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.9;
}

.highlight { color: #EAC458; }

/* Animação Reveal Up */
.reveal-up {
    opacity: 0;
    transform: translateY(80px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .vision-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .col-right { order: -1; margin-bottom: 20px; }
    .large-img { height: 350px; }
    .float-card {
        right: 0; bottom: -20px;
        width: 240px; height: 240px;
    }
    .text-content .title-serif { font-size: 2.2rem; }
}

/* --- Seção Diferenciais --- */
.section-differentials {
    padding: 80px 20px;
    background: var(--adin-bg-gradient);
    font-family: 'Montserrat', serif;
}

.section-differentials .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-differentials .section-header .subtitle {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--adin-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-differentials .section-header .title-serif {
    font-family: 'Montserrat', serif;
    font-size: 2.5rem;
    color: var(--adin-blue);
    font-weight: 400;
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px;
}

.feature-card {
    background: var(--adin-white);
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.feature-card:hover {
    border-color: var(--adin-border-hover);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(242, 201, 76, 0.2);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: white;
}

.bg-blue { background-color: var(--adin-blue); }
.bg-yellow { background-color: var(--adin-yellow); }

.feature-card p {
    font-size: 0.95rem;
    color: var(--adin-blue);
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
    .section-differentials .section-header .title-serif { font-size: 2rem; }
}

/* --- Seção Stats & CTA --- */
.section-stats {
    padding: 80px 20px;
    background-color: #fff;
    text-align: center;
}

.section-title-serif {
    font-family: 'Montserrat', serif;
    font-size: 3rem;
    color: #333;
    margin-bottom: 50px;
    font-weight: 400;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.stat-card {
    background-color: #FFD24C;
    padding: 40px 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    color: #1F3A56;
    transition: transform 0.3s ease;
    height: 100%;
}

.stat-card:hover { transform: translateY(-5px); }

.stat-header {
    font-family: 'Montserrat', serif;
    font-size: 3rem;
    line-height: 1;
    font-weight: 400;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.stat-label {
    font-family: 'Montserrat', serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.stat-desc {
    font-family: 'Montserrat', serif;
    font-size: 0.8rem;
    line-height: 1.5;
    color: #333;
    max-width: 250px;
}

.cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-subtitle {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
    margin-bottom: 15px;
    font-weight: 600;
}

.cta-title {
    font-family: 'Montserrat', serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 400;
}

.cta-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-cta {
    display: inline-block;
    background-color: #FFD24C;
    color: #1F3A56;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s ease;
    font-size: 1rem;
}

.btn-cta:hover { background-color: #eac458; }

@media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .stats-grid { grid-template-columns: 1fr; }
    .section-title-serif { font-size: 2.2rem; }
}

/* --- Seção Testimonials (Marquee) --- */
.section-testimonials {
    padding: 80px 0;
    background-color: #fff;
    overflow: hidden;
}

.section-testimonials .section-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.title-serif {
    font-family: 'Montserrat', serif;
    font-size: 2.5rem;
    color: #333;
    font-weight: 400;
}

.testimonial-card {
    background-color: #F9F7F2;
    border-radius: 16px;
    padding: 40px 30px;
    width: 400px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    height: 100%; 
    min-height: 320px;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
}

.author-name {
    font-family: 'Montserrat', serif;
    font-size: 1.1rem;
    color: #1F3A56;
    font-weight: 600;
}

.stars {
    color: #FFD24C;
    font-size: 1rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-family: 'Montserrat', serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.scroller { max-width: 100%; }

.scroller__inner {
    padding-block: 1rem;
    display: flex;
    gap: 30px;
    flex-wrap: nowrap;
    animation: scroll 40s linear infinite;
    width: max-content;
}

.scroller:hover .scroller__inner { animation-play-state: paused; }

@keyframes scroll {
    to { transform: translate(calc(-50% - 15px)); }
}

@media (max-width: 768px) {
    .testimonial-card { width: 300px; padding: 30px 20px; }
    .title-serif { font-size: 2rem; }
}


/* --- CSS do Carrossel Infinito (Landing Page) --- */
.scroller {
    max-width: 100%;
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent, white 5%, white 95%, transparent);
    mask: linear-gradient(90deg, transparent, white 5%, white 95%, transparent);
}

.scroller__inner {
    padding-block: 1rem;
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    animation: scroll 60s linear infinite; /* 60s para ficar suave com muitos cards */
}

.scroller:hover .scroller__inner {
    animation-play-state: paused;
}

@keyframes scroll {
    to {
        transform: translate(calc(-50% - 12px)); /* Ajuste fino baseado no gap */
    }
}

/* Card Específico do Carrossel */
.testimonial-lp-card {
    width: 350px; /* Largura fixa para o carrossel */
    flex-shrink: 0;
    white-space: normal; /* Garante que o texto quebre linha */
}

/* =========================================
   PÁGINA: NOSSOS PROFESSORES
   ========================================= */

/* --- Hero Interno Compacto --- */
.page-hero {
    padding: 140px 0 80px; /* Mais espaço no topo por causa do header fixo */
    text-align: center;
    background-color: var(--adin-blue);
    color: white;
    position: relative;
}

.page-hero .subtitle-gold {
    display: block;
    color: var(--adin-yellow);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-family: 'Montserrat', serif;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    font-family: 'Montserrat', sans-serif; /* Usando Inter para leitura mais fácil */
}

/* --- Grid da Equipe --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--adin-yellow);
}

.team-img-wrapper {
    width: 100%;
    height: 380px;
    overflow: hidden;
    position: relative;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s ease;
}

.team-card:hover .team-img-wrapper img {
    transform: scale(1.05);
}

.team-content {
    padding: 30px;
    text-align: center;
}

.team-content h3 {
    color: var(--adin-blue);
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.team-role {
    display: block;
    color: var(--adin-yellow); /* Dourado da marca */
    font-family: 'Montserrat', serif;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-content p {
    color: var(--adin-text);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.team-social a {
    color: #94a3b8;
    font-size: 1.2rem;
    transition: 0.3s;
}

.team-social a:hover {
    color: var(--adin-blue);
    transform: scale(1.1);
}

/* Responsividade Específica desta página */
@media (max-width: 768px) {
    .page-hero h1 { font-size: 2.5rem; }
    .team-img-wrapper { height: 320px; }
}

/* --- Ajuste Contato em Linha --- */

/* Container que segura todos os itens */
.contact-row {
    display: flex;
    justify-content: center; /* Centraliza o grupo na tela */
    gap: 50px; /* Espaço entre cada bloco de contato */
    flex-wrap: wrap; /* Permite quebrar linha em telas pequenas */
    margin-top: 40px;
    text-align: center;
}

/* Cada item individual */
.info-item {
    display: flex;
    flex-direction: column; /* Coloca o Ícone EM CIMA do texto */
    align-items: center; /* Centraliza o ícone com o texto */
    justify-content: center;
    gap: 15px;
    min-width: 200px; /* Tamanho mínimo para não ficar espremido */
}

/* Ajuste do ícone */
.info-item i {
    font-size: 2.5rem; /* Ícone maior para destaque */
    color: var(--color-gold);
    margin-bottom: 10px;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.info-item p {
    font-size: 1rem;
    color: var(--text-body);
}

/* Responsividade: No celular volta a ficar um embaixo do outro */
@media (max-width: 768px) {
    .contact-row {
        flex-direction: column;
        gap: 40px;
    }
}