/* =========================================
   ESTILOS GERAIS & TIPOGRAFIA
   ========================================= */
body {
    font-family: 'Poppins', sans-serif;
    color: #1a1a1a;
    overflow-x: hidden;
}

.min-vh-100 { 
    min-height: 100vh; 
}

/* =========================================
   COLUNA ESQUERDA (CONTEÚDO)
   ========================================= */
.content-column {
    z-index: 2;
    background-color: #fff;
}

.display-title {
    font-weight: 600;
    font-size: 2.2rem;
    line-height: 1.2;
    color: #222;
    letter-spacing: -0.5px;
}

/* =========================================
   BOTÕES E LINKS
   ========================================= */
.btn-portal {
    border: 1px solid #6c757d; /* Cinza Neutro */
    color: #333;
    background: transparent;
    font-weight: 500;
    padding: 12px 10px;
    border-radius: 6px;
    transition: all 0.2s ease-in-out;
    font-size: 0.95rem;
}

.btn-portal:hover {
    background-color: transparent; 
    border-color: #014898;         /* Azul Marca */
    color: #014898;                
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(1, 72, 152, 0.1); 
}

.btn-cta {
    border: 2px solid #014898; 
    color: #014898;
    background: transparent;
    font-weight: 600;
    border-radius: 4px; 
    padding: 14px 20px;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #014898;
    color: #fff;
    box-shadow: 0 5px 15px rgba(1, 72, 152, 0.3);
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: #333;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-link:hover {
    background-color: #555;
}

/* =========================================
   COLUNA DIREITA (HERO & CTA CARD)
   ========================================= */
.bg-hero {
    background: url('../images/vestibular-2026-1.jpg') no-repeat center center / cover;
    background-color: #f0f0f0; 
}

.hero-overlay {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0,0,0,0.45); 
    pointer-events: none;
}

/* Card de Inscrição */
.cta-card {
    background-color: #fff;
    border-radius: 8px;
    max-width: 520px; 
    width: 90%;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25) !important;
    position: relative;
    z-index: 10;
    margin: 0 auto; /* Centralização padrão */
}

/* =========================================
   ELEMENTOS FLUTUANTES
   ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

/* =========================================
   RESPONSIVIDADE
   ========================================= */
@media (max-width: 991px) {
    .display-title { font-size: 1.8rem; }
    .bg-hero { min-height: 50vh; }
    .cta-card { margin-top: 20vh; margin-bottom: 50px; }
}