/* Força Isoladas v2 - Sistema de Design */

:root {
    --primary-bg: #090a0a;
    --text-main: #090a0a;
    --text-white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-400: #9ca3af;
    --accent: #e11d48;
    /* Vermelho Força */
    --accent-hover: #be123c;

    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);

    --font-heading: 'Montserrat', sans-serif;
    --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    --container-width: 1200px;
    --header-height: 80px;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    display: block;
}

/* Header & Navigation */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.header-hidden-smart {
    transform: translateY(-100%);
}

.menu-handle {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 6px;
    background-color: #D1D1D1;
    border-radius: 0 0 10px 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    /* Acima do header e overlays */
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.menu-handle.visible {
    opacity: 1;
    visibility: visible;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    padding: 0 40px;
    /* Joga o logo e cadeado para as pontas */
    position: relative;
    height: var(--header-height);
}

.header-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 10px 45px;
    /* Aumentado o distanciamento interno das bordas da cápsula */
    box-shadow: var(--glass-shadow);
}

.header-right {
    display: flex;
    align-items: center;
}

/* Desktop Sticky/Solid State */
.header-solid {
    background: #fff;
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header-solid .header-wrapper {
    padding: 0 20px;
}

.header-solid .header-container {
    position: static;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.logo img {
    height: 45px;
}

.nav-desktop ul {
    display: flex;
    gap: 40px;
    /* Aumentado o espaçamento entre botões */
}

.nav-desktop a {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    letter-spacing: -0.01em;
}

.nav-desktop a:hover {
    color: var(--accent);
}

/* Lock Icon Animation */
/* Lock Icon Adjustment */
.lock-icon {
    position: relative;
    width: 38px;
    height: 38px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
}

.lock-icon img {
    position: absolute;
    width: 18px;
    transition: var(--transition-smooth);
}

.lock-open {
    opacity: 0;
    transform: translateY(10px);
}

.btn-login:hover .lock-closed {
    opacity: 0;
    transform: translateY(-10px);
}

.btn-login:hover .lock-open {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Nav - Direct Access */
.nav-mobile {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 500px;
    background: var(--primary-bg);
    border-radius: 20px;
    padding: 12px;
    z-index: 1001;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mobile-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.nav-mobile a {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-mobile-highlight {
    background: var(--accent);
    padding: 8px 16px;
    border-radius: 12px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 100px;
    /* Espaço para o menu */
    overflow: hidden;
}

.hero-main-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    width: 100%;
    /* Fundamental para não encolher */
    padding-bottom: 60px;
    position: relative;
    z-index: 2;
}

.hero-bg,
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg {
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    background: none;
    z-index: 1;
}

.hero-top-title {
    text-align: left;
    max-width: calc(100% - 100px);
    margin: 80px 100px 20px 0;
}

.hero-top-title h1 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--primary-bg);
    letter-spacing: 0.05em;
    font-weight: 800;
    line-height: 1.1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.6fr 1.2fr;
    gap: 30px;
    align-items: center;
    position: relative;
}

.hero-text-box {
    max-width: 336px;
    animation: fadeInLeft 1s ease-out 0.2s both;
    text-align: left;
}

.hero-text-box p {
    font-size: 1.15rem;
    color: #000;
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.4;
}

.highlight {
    color: var(--accent);
    font-weight: 700;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    color: #000;
    padding: 8px 20px 8px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: #000;
    color: #fff;
}

.btn-icon-wrapper {
    position: relative;
    width: 20px;
    height: 20px;
    overflow: hidden;
    flex-shrink: 0;
}

.btn-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    filter: invert(0);
    transition: var(--transition-smooth);
}

.btn-icon.btn-icon-hover {
    opacity: 0;
    transform: translateX(-10px);
}

.btn-primary:hover .btn-icon-default {
    opacity: 0;
    transform: translateX(10px);
}

.btn-primary:hover .btn-icon.btn-icon-hover {
    opacity: 1;
    transform: translateX(0);
}

.btn-primary:hover .btn-icon {
    filter: invert(1);
}

/* Hero Cards */
.hero-cards-container {
    position: relative;
    width: 100%;
    height: 280px;
    display: flex;
    justify-content: flex-end;
}

.hero-card {
    position: absolute;
    right: 0;
    width: 280px;
    height: 280px;
    aspect-ratio: 1/1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 22px;
    box-shadow: var(--glass-shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-card.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

.card-inner {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(20px);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding-bottom: 10px;
}

.hero-card.active .card-inner {
    transform: translateY(0);
    opacity: 1;
}

/* Card Icons and Avatars */
.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
    object-fit: contain;
}

.student-avatars {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.student-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-right: -12px;
    object-fit: cover;
    background: #eee;
}

.more-students {
    background: var(--accent);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    border: 3px solid #fff;
    z-index: 10;
}

.tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 5px;
}

.card-content h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.card-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.3;
}

/* Card Controls - Inside at bottom */
.hero-card-controls {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 20px;
}

.progress-bar {
    flex: 1;
    height: 5px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
}

.progress-bar span {
    display: block;
    height: 100%;
    width: 0;
    background: var(--primary-bg);
    transition: width 0.1s linear;
}

.progress-bar.active span {
    background: #000;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== Seção Faculdades ===== */
.faculdades-section {
    background: #fff;
    padding: 50px 0;
    overflow: hidden;
    border-top: 1px solid var(--gray-200);
}

.faculdades-track {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: scrollLogos 30s linear infinite;
    width: max-content;
}

.faculdade-item {
    flex-shrink: 0;
    height: 45px;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.faculdade-item img {
    grid-area: 1 / 1;
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.faculdade-item .logo-color {
    opacity: 0;
}

.faculdade-item:hover .logo-gray {
    opacity: 0;
}

.faculdade-item:hover .logo-color {
    opacity: 1;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== Seção Conceito ===== */
.conceito-section {
    background: #fff;
    padding: 120px 20px 160px;
}

.conceito-container {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.conceito-titulo {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: var(--primary-bg);
    line-height: 1.3;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.conceito-subtitulo {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--gray-400);
    letter-spacing: 0.02em;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.conceito-section.visible .conceito-titulo,
.conceito-section.visible .conceito-subtitulo {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile First Adjustments */
@media (max-width: 968px) {
    .nav-desktop {
        display: none;
    }

    .nav-mobile {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text-box {
        margin: 0 auto;
    }

    .hero-cards-container {
        height: 280px;
    }

    .hero-card {
        padding: 30px;
    }

    .hero-top-title h1 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 5px 15px;
    }

    .logo img {
        height: 30px;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
        font-size: 1rem;
    }

    .hero-card-controls {
        bottom: -40px;
    }

    .progress-bar {
        width: 60px;
    }
}

/* ===== Seção O Método (Pilares) ===== */
.metodo-section {
    background: var(--gray-50);
    padding: 60px 0 80px;
}

.metodo-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.metodo-cards {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    align-items: stretch;
}

/* Card Base */
.metodo-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.metodo-section.visible .metodo-card {
    opacity: 1;
    transform: translateY(0);
}

.metodo-card:nth-child(2) {
    transition-delay: 0.2s;
    /* delay no segundo card */
}

.metodo-card-title {
    font-size: 2rem;
    font-weight: 600;
    /* Semibold conforme solicitação */
    color: var(--primary-bg);
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

/* Card 1 - Analytics */
.card-analytics {
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
}

.card-analytics .metodo-card-title {
    text-align: left;
}

.card-analytics-img {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    /* Zerado para diminuir a altura */
    min-height: auto;
}

.card-analytics-img img {
    width: 100%;
    max-width: 330px;
    /* Aumentado em cerca de 10% (era 300px) */
    object-fit: contain;
    transition: transform 0.5s ease;
}

.card-analytics:hover .card-analytics-img img {
    transform: translateY(-5px);
}

.card-analytics hr {
    border: none;
    height: 1px;
    background: var(--gray-200);
    margin: 0 0 25px 0;
}

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

/* Card 2 - Plano Orientado */
.card-plano {
    flex-direction: row;
    background: #e4e4e4;
    /* Fundo cinza suave */
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    /* Box da foto sutilmente mais largo, mas reduzido para dar mais espaço ao texto */
    padding: 30px;
    /* Padding engloba tudo, colocando a foto numa "caixa" */
    gap: 50px;
    /* Aumentado o espaçamento entre o texto e a foto */
    border: none;
}

.card-plano-content {
    padding: 0;
    /* Padding agora vem do card-plano */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Alinha o título no topo */
}

.card-plano .metodo-card-title {
    margin-bottom: 5px;
    /* Encurtado para acomodar a linha separadora */
}

.card2-divider {
    border: none;
    height: 1px;
    background: #bcbcbc;
    width: 60px;
    margin: 15px 0 25px 0;
}

.plano-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.5;
}

.plano-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.plano-list li {
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
    padding-left: 20px;
    color: #333;
}

.plano-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
    font-size: 1.2rem;
    top: -1px;
}

.plano-list li strong {
    color: #000;
}

.card-plano-img {
    height: 100%;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    /* Adicionado ratio/radius bem pequeno */
}

.card-plano-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    transition: transform 0.8s ease;
}

.card-plano:hover .card-plano-img img {
    transform: scale(1.02);
}

/* Mobile Settings */
@media (max-width: 968px) {
    .metodo-cards {
        grid-template-columns: 1fr;
    }

    .card-plano {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .card-plano-img {
        min-height: 350px;
    }
}

/* ===============================================================
   SEÇÃO CORPO ACADÊMICO (PROFESSORES)
   =============================================================== */
.professores-section {
    padding: 80px 0 60px;
    background: #ffffff;
    color: #111;
    overflow: hidden;
}

.professores-titulo {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
    color: #111;
}

.professores-grid {
    display: flex;
    gap: 15px;
    height: 400px;
    width: 100%;
}

.professor-card {
    position: relative;
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    cursor: auto;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    background: #111;
}

/* Hover Expansion Logic */
.professor-card:hover,
.professor-card.form-locked {
    flex: 2;
    /* Reduz amplitude da expansão p/ não distorcer imagens e cortar a cabeça */
}

.professores-grid.grid-has-open-form .professor-card:hover:not(.form-locked) {
    flex: 1;
    /* Cancela expansão visual de outros se um estiver ativo */
}

/* Base image styling */
.professor-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(100%) contrast(1.1);
    /* Grayscale by default */

    transition: filter 0.6s ease, transform 1.2s ease;
}

/* Hovering the card activates color and slight zoom */
.professor-card:hover .professor-img,
.professor-card.form-locked .professor-img {
    filter: grayscale(0%) contrast(1.05);
    transform: scale(1.02);
    /* reduziu amplitude */
}

/* Overlays Layer */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 100%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 10;
}

/* Darker background for forms */
.card-overlay.state-2,
.card-overlay.state-3 {
    background: rgba(0, 0, 0, 0.85);
    /* Fundo bem escuro para legibilidade do form */
    justify-content: center;
    align-items: center;
    text-align: left;
}

/* State Visibility Logic */
.professores-grid:not(.grid-has-open-form) .professor-card:hover:not(.is-showing-form):not(.is-showing-success) .state-1 {
    opacity: 1;
    pointer-events: all;
}

.professor-card.is-showing-form .state-2 {
    opacity: 1;
    pointer-events: all;
}

.professor-card.is-showing-success .state-3 {
    opacity: 1;
    pointer-events: all;
}

/* Content Styling - State 1 */
.professor-info {
    margin-bottom: 35px;
    width: 260px;
    /* largura recalculada para caber no flex: 2 */
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.professores-grid:not(.grid-has-open-form) .professor-card:hover:not(.is-showing-form):not(.is-showing-success) .professor-info {
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.4s ease 0.5s, opacity 0.4s ease 0.5s;
    /* fade in ocorre 100ms antes do fim da expansão */
}

.professor-nome {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
    line-height: 1.1;
}

.professor-bio {
    font-size: 0.9rem;
    color: #dedede;
    line-height: 1.5;
    max-width: 90%;
}

.btn-agendar {
    width: max-content;
    margin: 0 auto;
    background-color: #25d366;
    color: #111;
    border: none;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transform: translateY(20px);
    opacity: 0;
}

.professores-grid:not(.grid-has-open-form) .professor-card:hover:not(.is-showing-form):not(.is-showing-success) .btn-agendar {
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.4s ease 0.5s, opacity 0.4s ease 0.5s, background-color 0.3s ease;
}

.btn-agendar:hover,
.btn-enviar-wpp:hover {
    background-color: #1ebe57;
    transform: scale(1.02) !important;
}

/* Content Styling - State 2/3 (Forms) */
.form-wrapper,
.success-message {
    width: 100%;
    max-width: 280px;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.professor-card.is-showing-form .form-wrapper,
.professor-card.is-showing-success .success-message {
    transform: translateY(0);
    opacity: 1;
}

.form-titulo {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 25px;
    color: #fff;
    line-height: 1.2;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.form-input {
    width: 100%;
    background: #fff;
    border: 1px solid transparent;
    padding: 14px 18px;
    border-radius: 30px;
    font-size: 0.95rem;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
    border-color: #25d366;
    box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.2);
}

.form-input::placeholder {
    color: #888;
}

.lgpd-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.75rem;
    color: #bbb;
    line-height: 1.4;
    margin-top: 5px;
    margin-bottom: 15px;
    cursor: pointer;
}

.lgpd-checkbox input {
    appearance: none;
    -webkit-appearance: none;
    margin-top: 2px;
    width: 16px;
    min-width: 16px;
    height: 16px;
    border-radius: 100%;
    border: 1px solid #ccc;
    background-color: transparent;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.lgpd-checkbox input:checked {
    background-color: #25d366;
    border-color: #25d366;
}

.btn-enviar-wpp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    background-color: #25d366;
    color: #111;
    border: none;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-enviar-wpp .wpp-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(0%) sepia(8%) saturate(16%) hue-rotate(344deg) brightness(98%) contrast(106%);
    /* hack to make it essentially dark/black to match text */
}

/* Success Message */
.success-message {
    text-align: left;
}

.success-message p {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 400;
}

.progress-bar-container {
    width: 50%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 20px auto 0 auto;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: #ffffff;
    border-radius: 2px;
}

.professor-card.is-showing-success .progress-bar-fill {
    animation: fillProgress 3.5s linear forwards;
}

@keyframes fillProgress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

/* Custom UI Tooltip & Animations */
.custom-tooltip {
    position: absolute;
    background: #ff4d4d;
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    pointer-events: none;
    top: -32px;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    white-space: nowrap;
    z-index: 10;
}

.custom-tooltip.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@keyframes flashRed {
    0% {
        color: #bbb;
    }

    20% {
        color: #ff4d4d;
    }

    80% {
        color: #ff4d4d;
    }

    100% {
        color: #bbb;
    }
}

.flash-error {
    animation: flashRed 1s ease;
}

/* Seção: Resultados */
.resultados-section {
    background-color: #fff;
    padding: 60px 0 80px;
    overflow: hidden;
    position: relative;
    user-select: none;
}

.carousel-container {
    position: relative;
    width: 100%;
    margin-top: 10px;
    height: 500px;
    /* Reduzido de 600px para evitar vácuo */
    display: flex;
    align-items: flex-start;
    /* Alinhado ao topo para aproximar do título */
    padding-top: 50px;
    /* Espaço apenas para o zoom do card não cortar */
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 40px;
    padding: 0 40px;
    will-change: transform;
    pointer-events: none;
    /* Deixa o container passar eventos para o scroll-container ou JS */
}

/* Overlays de gradiente nas laterais */
.carousel-overlay {
    position: absolute;
    top: 0;
    width: 25%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.carousel-overlay.left {
    left: 0;
    background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.carousel-overlay.right {
    right: 0;
    background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.aluno-card {
    flex: 0 0 196px;
    /* Reduzido em mais 15% (era 230px) */
    height: 264px;
    /* Reduzido em mais 15% (era 310px) */
    position: relative;
    border-radius: 15px;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform: scale(0.9);
    opacity: 0.3;
}

.aluno-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Foco Central (Classe aplicada via JS) */
.aluno-card.foco-central {
    transform: scale(1.1);
    /* Um pouco mais de destaque */
    opacity: 1;
}

.aluno-info {
    position: absolute;
    top: calc(100% + 20px);
    text-align: center;
    width: 300px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.aluno-card.foco-central .aluno-info {
    opacity: 1;
    transform: translateY(0);
}

.aluno-nome {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #111;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.aluno-aprovacao {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    max-width: 280px;
    margin: 0 auto;
}

/* Seção: Estrutura */
.estrutura-section {
    background-color: #f4f4f4;
    padding: 100px 0;
    min-height: 625px;
    display: flex;
    align-items: center;
}

.container-estrutura {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.estrutura-textos {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-branca {
    background: #fff;
    color: #444;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.badge-cinza {
    background: #f4f4f4;
    display: inline-block;
}

.estrutura-titulo {
    font-size: 2.8rem;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
    margin-bottom: 20px;
}

.estrutura-descricao {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 90%;
}

.btn-pilula {
    display: inline-block;
    padding: 15px 35px;
    background: #333;
    color: #fff;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-pilula:hover {
    background: #111;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Galeria */
.estrutura-galeria {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.galeria-principal-wrapper {
    flex: 1;
    position: relative;
    aspect-ratio: 1/1;
}

.galeria-principal {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #ddd;
}

.galeria-principal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.galeria-principal img.transitioning {
    opacity: 0;
    transform: scale(1.02);
}

.nav-bolinha {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background: #000;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.nav-bolinha.prev {
    left: 20px;
}

.nav-bolinha.next {
    right: 20px;
}

.nav-bolinha img {
    position: absolute;
    width: 18px;
    height: 18px;
    transition: var(--transition-smooth);
}

.nav-bolinha.prev img {
    transform: rotate(180deg);
}

/* Hover icon hidden by default */
.nav-bolinha .nav-icon-hover {
    opacity: 0;
}

/* NEXT: arrow slides to the right */
.nav-bolinha.next .nav-icon-hover {
    transform: translateX(-10px);
}

.nav-bolinha.next:hover .nav-icon-default {
    opacity: 0;
    transform: translateX(10px);
}

.nav-bolinha.next:hover .nav-icon-hover {
    opacity: 1;
    transform: translateX(0);
}

/* PREV: arrow slides to the left (rotated coordinate system) */
.nav-bolinha.prev .nav-icon-hover {
    transform: rotate(180deg) translateX(-10px);
}

.nav-bolinha.prev:hover .nav-icon-default {
    opacity: 0;
    transform: rotate(180deg) translateX(10px);
}

.nav-bolinha.prev:hover .nav-icon-hover {
    opacity: 1;
    transform: rotate(180deg) translateX(0);
}

/* Miniaturas */
.galeria-miniaturas {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.miniatura {
    width: 85px;
    height: 85px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.miniatura img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.miniatura.active {
    opacity: 1;
    box-shadow: 0 0 0 2px #fff, 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Mobile */
@media (max-width: 991px) {
    .estrutura-section {
        padding: 60px 0;
        min-height: auto;
    }

    .container-estrutura {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .estrutura-textos {
        align-items: center;
    }

    .estrutura-titulo {
        font-size: 2rem;
    }

    .galeria-miniaturas {
        display: none;
    }

    .galeria-principal-wrapper {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
}

/* Seção: Formulário */
.contato-section {
    background-color: #ffffff;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-contato {
    max-width: 1200px;
    /* Largura aumentada para o título em uma linha */
    width: 100%;
    /* Força 100% para não encolher com Flexbox */
    margin: 0 auto;
    text-align: center;
}

.contato-titulo {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 100px;
    /* Aumentado em 50px */
    line-height: 1.2;
    white-space: nowrap;
    /* Garante uma linha */
    transition: opacity 0.3s ease;
    /* Adicionado para suavizar mudança de texto */
}

.contato-form {
    display: flex;
    flex-wrap: wrap;
    /* Permite que o texto jurídico vá para baixo */
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
}

.form-container {
    max-width: 1100px;
    /* Aumentado para caber horizontalmente */
    margin: 0 auto;
}

.input-group {
    flex: 1;
    /* Distribui igualmente */
}

.input-group input {
    width: 100%;
    padding: 15px 20px;
    background: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 50px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
}

.btn-submit {
    flex: 0 0 auto;
    /* Não cresce */
    min-width: 180px;
    padding: 15px 30px;
    background: #000000;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover:not(:disabled) {
    background: #111;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.texto-juridico {
    grid-column: 1 / -1;
    /* Ocupa a largura toda abaixo (se usar grid) */
    width: 100%;
    margin-top: 20px;
    font-size: 12px;
    color: #999;
    line-height: 1.5;
    text-align: center;
}

/* Estado de Sucesso com Timer Bar */
.timer-bar-container {
    width: 60%;
    max-width: 400px;
    height: 8px;
    background: #e0e0e0;
    border-radius: 10px;
    margin: 40px auto;
    overflow: hidden;
    position: relative;
    transition: opacity 0.3s ease;
    display: none;
}

.timer-bar-fill {
    height: 100%;
    width: 100%;
    background: #000;
    /* Alterado de verde para preto conforme solicitado */
    border-radius: 10px;
}

.timer-bar-container.animating .timer-bar-fill {
    animation: fillProgressAnim 3s linear forwards;
}

@keyframes fillProgressAnim {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

.contato-section .success-message {
    padding: 20px 0;
    width: 100%;
    display: none;
    /* Esconde do fluxo por padrão */
    justify-content: center;
    align-items: center;
    min-height: 100px;
    opacity: 0;
    /* Inicia invisível */
    transition: opacity 0.6s ease;
}

.contato-section .success-message.visible {
    display: flex !important;
    opacity: 1 !important;
}

.success-text {
    font-size: 20px;
    font-weight: 400;
    color: #111;
    text-align: center;
    margin: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .contato-section {
        padding: 80px 20px;
    }

    .contato-titulo {
        font-size: 1.8rem;
        white-space: normal;
        text-align: center;
        /* Permite quebrar em telas pequenas */
    }
}

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 38px;
    height: 38px;
    background: #000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top img {
    position: absolute;
    width: 18px;
    height: 18px;
    filter: invert(1);
    transition: var(--transition-smooth);
}

.back-to-top .btt-icon-hover {
    opacity: 0;
    transform: translateY(10px);
}

.back-to-top:hover .btt-icon-default {
    opacity: 0;
    transform: translateY(-10px);
}

.back-to-top:hover .btt-icon-hover {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 968px) {
    .back-to-top {
        display: none;
    }
}

/* ===== Footer ===== */
.main-footer {
    background: #000000;
    color: #ffffff;
    padding-top: 130px;
    font-family: var(--font-body);
    height: auto;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 60px;
    align-items: flex-start;
    width: 100%;
}

/* Coluna 1 */
.footer-col-1 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 80px;
    max-width: 480px;
}

.footer-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
}

.btn-footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #000000;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.btn-footer-cta img {
    width: 24px;
    height: 24px;
}

.btn-footer-cta:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Coluna 2 */
.footer-col-2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    display: block;
    width: 180px;
    margin-bottom: 80px;
}

.footer-logo img {
    width: 100%;
    transition: opacity 0.3s ease;
}

.footer-logo:hover img {
    opacity: 0.6;
}

.footer-contatos {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contato-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    color: #ffffff;
    transition: color 0.3s ease;
}

.contato-icon-wrapper {
    position: relative;
    width: 24px;
    height: 24px;
}

.contato-icon-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease;
}

.icon-hover {
    opacity: 0;
}

.contato-item:hover .icon-default {
    opacity: 0;
}

.contato-item:hover .icon-hover {
    opacity: 1;
}

.contato-item:hover {
    color: var(--gray-400);
}

/* Bottom Bar */
.footer-bottom {
    margin-top: auto;
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    width: 100%;
}

.bottom-bar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.bottom-links {
    display: flex;
    gap: 20px;
}

.bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.bottom-links a:hover {
    color: #ffffff;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .footer-col-1 {
        order: 2;
        align-items: center;
        margin: 0 auto;
    }

    .footer-col-2 {
        order: 1;
        align-items: center;
    }

    .footer-logo {
        margin: 0 auto 30px;
    }

    .footer-contatos {
        align-items: center;
    }

    .contato-item {
        justify-content: center;
    }

    .bottom-bar-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* ===============================================================
   MOBILE MENU SYSTEM (FAB + Floating Box)
   =============================================================== */

/* Desktop: always hide mobile-only elements */
.mobile-menu-overlay,
.mobile-fab {
    display: none;
}

@media (max-width: 768px) {

    /* --- Header: centralize logo, hide desktop nav & lock --- */
    .header-wrapper {
        justify-content: center;
        padding: 0 20px;
        height: 64px !important;
    }

    #main-header.header-solid {
        padding: 5px 0 !important;
    }

    .header-container {
        display: none !important;
    }

    .header-right {
        display: none !important;
    }

    .nav-mobile {
        display: none !important;
    }

    .menu-handle {
        display: none !important;
    }

    /* Smaller mobile header */
    #main-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
    }

    .logo img {
        height: 28px;
    }

    /* --- Overlay backdrop (blur + dim) --- */
    .mobile-menu-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: transparent;
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s ease, visibility 0.35s;
    }

    body.mobile-menu-open .mobile-menu-overlay {
        opacity: 1;
        visibility: visible;
    }

    /* --- Floating Menu Box --- */
    .mobile-menu-box {
        position: absolute;
        bottom: 100px;
        left: 50%;
        transform: translateX(-50%) translateY(20px) scale(0.95);
        width: calc(100% - 80px);
        max-width: 240px;
        background: #000;
        border-radius: 20px;
        padding: 40px 30px 32px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        opacity: 0;
        transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    body.mobile-menu-open .mobile-menu-box {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }

    /* --- Navigation Links --- */
    .mobile-menu-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 22px;
    }

    .mobile-menu-nav a {
        color: #fff;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.75rem;
        font-weight: 400;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        text-decoration: none;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s;
    }

    body.mobile-menu-open .mobile-menu-nav a {
        opacity: 1;
        transform: translateY(0);
    }

    /* Stagger animation */
    .mobile-menu-nav a:nth-child(1) {
        transition-delay: 0.10s;
    }

    .mobile-menu-nav a:nth-child(2) {
        transition-delay: 0.15s;
    }

    .mobile-menu-nav a:nth-child(3) {
        transition-delay: 0.20s;
    }

    .mobile-menu-nav a:nth-child(4) {
        transition-delay: 0.25s;
    }

    .mobile-menu-nav a:nth-child(5) {
        transition-delay: 0.30s;
    }

    .mobile-menu-nav a:active {
        color: var(--accent);
    }


    /* --- FAB Button --- */
    .mobile-fab {
        display: flex;
        position: fixed;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        width: 56px;
        height: 56px;
        background: #000;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        z-index: 1002;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        animation: fabBounce 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97) 0.5s both;
        -webkit-tap-highlight-color: transparent;
    }

    @keyframes fabBounce {
        0% {
            transform: translateX(-50%) translateY(80px);
            opacity: 0;
        }

        60% {
            transform: translateX(-50%) translateY(-8px);
            opacity: 1;
        }

        80% {
            transform: translateX(-50%) translateY(4px);
        }

        100% {
            transform: translateX(-50%) translateY(0);
        }
    }

    /* --- FAB Bars (hamburger icon) --- */
    .fab-bar {
        display: block;
        width: 22px;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
            opacity 0.3s ease;
    }

    .fab-bar-1 {
        transition-delay: 0.05s;
    }

    .fab-bar-2 {
        transition-delay: 0.10s;
    }

    .fab-bar-3 {
        transition-delay: 0.15s;
    }

    /* --- FAB → X transformation --- */
    body.mobile-menu-open .mobile-fab {
        transform: translateX(-50%) rotate(360deg);
    }

    body.mobile-menu-open .fab-bar-1 {
        transform: translateY(7px) rotate(45deg);
    }

    body.mobile-menu-open .fab-bar-2 {
        opacity: 0;
    }

    body.mobile-menu-open .fab-bar-3 {
        transform: translateY(-7px) rotate(-45deg);
    }



    /* --- Refino de Volume (Mobile-Only) --- */

    /* 1. Seção Hero */
    .hero-section {
        padding-top: 80px !important;
    }

    .hero-top-title {
        margin: 20px auto !important;
        text-align: center !important;
        max-width: 100% !important;
    }

    .hero-top-title h1,
    .hero-text-box,
    .hero-text-box p {
        text-align: center !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .hero-cards-container {
        justify-content: center !important;
    }

    .hero-card.active {
        right: auto !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    /* 2. Seção Faculdades */
    .faculdade-item .logo-color {
        opacity: 1 !important;
    }

    .faculdade-item .logo-gray {
        display: none !important;
        opacity: 0 !important;
    }

    /* 3. Seção Método */
    .card-analytics,
    .card-plano,
    .metodo-card-title,
    .card-analytics p,
    .card-plano p,
    .plano-list {
        text-align: center !important;
    }

    .plano-list li {
        padding-left: 0 !important;
    }

    .plano-list li::before {
        display: none !important;
    }

    /* 4. Seção Estrutura */
    .container-estrutura {
        display: flex !important;
        flex-direction: column !important;
    }

    .estrutura-textos {
        display: contents !important;
    }

    .estrutura-textos .badge-branca {
        order: 1;
        align-self: center;
        margin-bottom: 15px;
    }

    .estrutura-titulo {
        order: 2;
        text-align: center;
    }

    .estrutura-descricao {
        order: 3;
        text-align: center;
        margin-bottom: 25px;
    }

    .estrutura-galeria {
        order: 4;
        width: 100%;
        margin-top: 10px;
    }

    .btn-pilula {
        order: 5;
        margin-top: 30px;
        align-self: center;
    }

    /* 5. Seção Contato */
    .contato-titulo {
        margin-bottom: 40px !important;
    }

    .contato-section {
        height: auto !important;
        min-height: 500px !important;
        padding: 80px 20px !important;
    }

    .contato-form {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .contato-form .input-group,
    .contato-form .btn-submit {
        width: 80% !important;
    }

    /* 6. Seção Footer */
    .main-footer {
        height: auto !important;
        padding-top: 80px !important;
    }

    .footer-desc {
        display: none !important;
    }

    .contato-icon-wrapper {
        display: none !important;
    }

    .footer-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 0 !important;
        padding-bottom: 80px !important;
    }

    .footer-col-1,
    .footer-col-2 {
        display: contents !important;
    }

    .footer-logo {
        order: 1;
        margin-top: 0 !important;
        margin-bottom: 80px !important;
    }

    .btn-footer-cta {
        order: 2;
        margin-top: 0 !important;
        margin-bottom: 20px !important;
        align-self: center;
    }

    .footer-contatos {
        order: 3;
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .footer-bottom {
        padding-bottom: 120px;
    }

    .contato-item {
        justify-content: center !important;
    }

    /* 7. Auditoria de Tipografia Geral */
    h2,
    .professores-titulo,
    .contato-titulo,
    .estrutura-titulo,
    .conceito-titulo {
        font-size: 1.8rem !important;
        white-space: normal !important;
        line-height: 1.3 !important;
    }
}