/* ===== VARIÁVEIS ===== */
:root {
    --primary: #1a4f8a;
    --primary-dark: #0d2b4e;
    --primary-light: #2471a3;
    --primary-lighter: #d6eaf8;
    --accent: #7dba3c;
    --white: #ffffff;
    --bg-light: #f0f6ff;
    --bg-card: #ffffff;
    --text: #1a2332;
    --text-muted: #5a6a7a;
    --border: #dde8f5;
    --whatsapp: #25d366;
    --whatsapp-dark: #1da851;
    --shadow-sm: 0 2px 8px rgba(26, 79, 138, 0.10);
    --shadow-md: 0 6px 24px rgba(26, 79, 138, 0.14);
    --shadow-lg: 0 12px 40px rgba(26, 79, 138, 0.18);
    --radius: 14px;
    --radius-sm: 8px;
    --transition: 0.25s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 17px; }

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== LAYOUT ===== */
.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.bg-light { background: var(--bg-light); }

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-tag {
    display: inline-block;
    background: var(--primary-lighter);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 0.85rem;
}
.section-header h2 {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 0.6rem;
}
.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}

/* ===== BOTÕES ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-decoration: none;
}
.btn-white {
    background: var(--white);
    color: var(--primary);
}
.btn-white:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2.5px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    transform: translateY(-2px);
}
.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
}
.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}
.btn-full { width: 100%; justify-content: center; padding: 1rem 2rem; font-size: 1.05rem; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background var(--transition), box-shadow var(--transition);
    padding: 0.75rem 0;
}
.navbar.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; }
.nav-logo { height: 52px; width: auto; }
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.nav-link {
    padding: 0.5rem 0.9rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    transition: all var(--transition);
}
.navbar.scrolled .nav-link { color: var(--text); }
.nav-link:hover {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}
.navbar.scrolled .nav-link:hover {
    background: var(--primary-lighter);
    color: var(--primary);
}
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    padding: 0.4rem;
}
.navbar.scrolled .nav-toggle { color: var(--primary); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #2471a3 100%);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(125, 186, 60, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 50%);
}
.hero-content {
    position: relative;
    text-align: center;
    padding: 8rem 1.5rem 6rem;
    z-index: 1;
}
.hero-logo {
    height: 110px;
    width: auto;
    margin: 0 auto 2rem;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.25));
}
.hero-content h1 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.15;
    text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.88);
    margin-bottom: 0.6rem;
    line-height: 1.7;
}
.hero-teacher {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2.5rem;
    font-style: italic;
}
.hero-teacher strong { color: var(--white); font-style: normal; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 1;
}
.hero-wave svg { display: block; width: 100%; }

/* ===== STATS ===== */
.stats { background: var(--bg-light); padding: 3rem 0; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.75rem 1rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    transition: transform var(--transition), box-shadow var(--transition);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary-lighter);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
}
.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}
.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* ===== WORKSHOPS ===== */
.category-block { margin-bottom: 3rem; }
.category-title {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border);
}
.category-title h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-dark);
}
.cat-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.cat-blue { background: #dbeafe; color: #1e40af; }
.cat-red { background: #fee2e2; color: #b91c1c; }
.cat-green { background: #dcfce7; color: #15803d; }
.cat-purple { background: #ede9fe; color: #6d28d9; }

.pdf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}
.pdf-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--border);
    transition: all var(--transition);
}
.pdf-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}
.pdf-card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.pdf-card-body { flex: 1; min-width: 0; }
.pdf-card-body h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.2rem;
    line-height: 1.3;
}
.pdf-card-body p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
}
.btn-pdf {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.55rem 1rem;
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all var(--transition);
}
.btn-pdf:hover {
    background: var(--primary-dark);
    transform: scale(1.04);
}

/* ===== AULA INDIVIDUAL ===== */
.aula-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}
.aula-section .section-header h2,
.aula-section .section-header p { color: var(--white); }
.aula-section .section-tag { background: rgba(255,255,255,0.15); color: var(--white); }
.aula-section .section-header p { color: rgba(255,255,255,0.8); }

.aula-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 880px;
    margin: 0 auto;
}
.aula-card {
    border-radius: var(--radius);
    padding: 2.5rem;
}
.price-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255,255,255,0.2);
}
.price-badge {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}
.price-value {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}
.price-period {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
}
.benefits { display: flex; flex-direction: column; gap: 0.75rem; }
.benefits li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: rgba(255,255,255,0.9);
    font-size: 0.98rem;
}
.benefits li i {
    color: var(--accent);
    font-size: 1rem;
    flex-shrink: 0;
}
.booking-card {
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.1rem;
}
.booking-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--primary-lighter);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}
.booking-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-dark);
}
.booking-card > p {
    color: var(--text-muted);
    font-size: 0.95rem;
}
.booking-steps {
    list-style: none;
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    counter-reset: steps;
}
.booking-steps li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text);
    font-size: 0.95rem;
    counter-increment: steps;
}
.booking-steps li::before {
    content: counter(steps);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ===== IMOBILIÁRIA ===== */
.imovel-content { display: flex; flex-direction: column; align-items: center; gap: 2.5rem; }
.imovel-logo-wrap {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem 3rem;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--border);
}
.imovel-logo { height: 120px; width: auto; margin: 0 auto; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    width: 100%;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.75rem 1.25rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--border);
    transition: all var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.85rem;
}
.service-card h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}
.service-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }
.imovel-cta { text-align: center; }
.imovel-cta p { color: var(--text-muted); margin-bottom: 1rem; font-size: 1rem; }

/* ===== DÚVIDAS / FORMULÁRIO ===== */
.duvidas-section { background: var(--white); }
.form-wrapper {
    max-width: 620px;
    margin: 0 auto;
}
.duvida-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1.5px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group label {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.form-group label i { color: var(--primary); }
.form-group input,
.form-group textarea {
    padding: 0.9rem 1.1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    color: var(--text);
    background: var(--bg-light);
    transition: border-color var(--transition), box-shadow var(--transition);
    resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 79, 138, 0.12);
    background: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aab4c0; }
.form-note {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}
.form-note i { color: var(--primary); }

/* ===== FOOTER ===== */
.footer { background: var(--primary-dark); color: rgba(255,255,255,0.85); }
.footer-inner {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    padding: 3rem 1.5rem 2rem;
    flex-wrap: wrap;
}
.footer-brand { flex: 1; min-width: 200px; }
.footer-logo { height: 50px; width: auto; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-nav a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    transition: color var(--transition);
}
.footer-nav a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-wa {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--whatsapp);
    font-weight: 700;
    font-size: 1rem;
    transition: opacity var(--transition);
}
.footer-wa:hover { opacity: 0.85; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1rem 1.5rem;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--white); }

/* ===== BOTÃO FLUTUANTE WHATSAPP ===== */
.wa-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--whatsapp);
    color: var(--white);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    z-index: 999;
    transition: all var(--transition);
    animation: pulse-wa 2.5s infinite;
}
.wa-float:hover {
    background: var(--whatsapp-dark);
    transform: scale(1.1);
    animation: none;
}
@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.45); }
    50% { box-shadow: 0 6px 30px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ===== HERO COM FOTO ===== */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: center;
    padding: 8rem 1.5rem 6rem;
    position: relative;
    z-index: 1;
}
.hero-text .hero-logo { margin: 0 0 1.75rem; }
.hero-text h1,
.hero-text .hero-subtitle,
.hero-text .hero-teacher { text-align: left; }
.hero-text .hero-buttons { justify-content: flex-start; }
.hero-photo-card {
    background: rgba(255,255,255,.1);
    border: 2px solid rgba(255,255,255,.2);
    border-radius: 20px;
    padding: 1.25rem 1.25rem 0;
    overflow: hidden;
    backdrop-filter: blur(6px);
}
.hero-photo-card img {
    width: 100%;
    display: block;
    max-height: 380px;
    object-fit: contain;
    object-position: bottom center;
}
.hero-social {
    display: flex;
    gap: .7rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}
.btn-social {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .5rem 1.1rem;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,.4);
    background: rgba(255,255,255,.1);
    color: white;
    font-size: .85rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all .2s;
    text-decoration: none;
}
.btn-social:hover { background: rgba(255,255,255,.22); border-color: white; }
.btn-social.btn-gold { background: #fbbc04; color: #1a2332; border-color: #fbbc04; }
.btn-social.btn-gold:hover { background: #f0ae00; transform: translateY(-2px); }

/* ===== PRÓXIMA AULA BAR ===== */
.proxima-aula-bar {
    background: linear-gradient(90deg, #3d8b1a, #5aab28);
    padding: 1.1rem 0;
}
.proxima-aula-inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.pa-icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: white; flex-shrink: 0;
}
.pa-info { flex: 1; min-width: 180px; }
.pa-label { display: block; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.75); }
.pa-date { display: block; font-size: 1.05rem; font-weight: 800; color: white; }
.pa-note { font-size: .85rem; color: rgba(255,255,255,.8); }
.btn-wa-light {
    background: white; color: #2e7d32; font-weight: 800;
    padding: .6rem 1.3rem; border-radius: 50px;
    display: inline-flex; align-items: center; gap: .4rem;
    font-size: .9rem; white-space: nowrap; text-decoration: none; flex-shrink: 0;
    transition: all .2s;
}
.btn-wa-light:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0,0,0,.15); }

/* ===== FILTRO DE WORKSHOPS ===== */
.filter-bar {
    display: flex; gap: .6rem; flex-wrap: wrap;
    justify-content: center; margin-bottom: 2.5rem; padding: .5rem 0;
}
.filter-btn {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .55rem 1.15rem; border-radius: 50px;
    border: 2px solid var(--border); background: white;
    color: var(--text-muted); font-size: .88rem; font-weight: 700;
    cursor: pointer; font-family: inherit; transition: all .2s;
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--primary); color: white; border-color: var(--primary); }

/* ===== IMOBILIÁRIA COM BANNER ===== */
.imovel-section { padding: 0; background: var(--bg-light); }
.imovel-banner-wrap { width: 100%; max-height: 300px; overflow: hidden; }
.imovel-banner-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.imovel-services-wrap { padding: 3rem 0 5rem; }
.imovel-section .section-header { margin-bottom: 2rem; }

/* ===== RESPONSIVO ===== */
@media (max-width: 960px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 7rem 1.5rem 5rem;
    }
    .hero-text .hero-logo { margin: 0 auto 1.5rem; }
    .hero-text h1, .hero-text .hero-subtitle, .hero-text .hero-teacher { text-align: center; }
    .hero-text .hero-buttons { justify-content: center; }
    .hero-text .hero-social { justify-content: center; }
    .hero-photo-card { max-width: 220px; margin: 0 auto; order: -1; }
}

@media (max-width: 900px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .aula-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    html { font-size: 16px; }
    .nav-toggle { display: block; }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-md);
        gap: 0.25rem;
    }
    .nav-menu.open { display: flex; }
    .nav-link { color: var(--text) !important; }
    .nav-link:hover { background: var(--primary-lighter) !important; color: var(--primary) !important; }

    .hero-content h1 { font-size: 2.1rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-buttons { flex-direction: column; align-items: center; }

    .section-header h2 { font-size: 1.7rem; }
    .pdf-grid { grid-template-columns: 1fr; }
    .pdf-card { flex-direction: column; text-align: center; }
    .pdf-card-icon { align-self: center; }

    .imovel-logo-wrap { padding: 1.5rem; }
    .imovel-logo { height: 80px; }

    .duvida-form { padding: 1.75rem; }
    .footer-inner { flex-direction: column; gap: 1.75rem; }
}

@media (max-width: 520px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .price-value { font-size: 3rem; }
    .hero-logo { height: 80px; }
    .filter-btn { font-size: .78rem; padding: .42rem .8rem; }
    .imovel-banner-wrap { max-height: 180px; }
    .proxima-aula-inner { justify-content: center; text-align: center; }
}
