.text-dark-blue {
    color: #001f3f;
}

/* ==================== NOTEBOOK AREA ==================== */

.notebook-area {
    position: relative;
    display: inline-block;
    text-align: center;
}

.logo-img {
    width: 300px;
}

.notebook-img {
    width: 100%;
    height: auto;
}

/* Caixas vermelhas */
.notebook-area p {
    position: absolute;
    background-color: #c40000b5;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 13px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    font-weight: bold;
}

.notebook-area p:nth-of-type(1) {
    right: -30%;
    top: 20%;
}

.notebook-area p:nth-of-type(2) {
    top: 38%;
    right: -44%;
}

.notebook-area p:nth-of-type(3) {
    bottom: 40%;
    left: -37%;
}

.notebook-area p:nth-of-type(4) {
    bottom: 22%;
    left: -40%;
}

/* Responsivo */
@media (max-width: 768px) {
    .notebook-area p {
        font-size: 13px;
        padding: 8px 14px;
    }
}

/* ==================== LAYOUT GERAL ==================== */

.cadastro-wrapper {
    width: 100%;
    min-height: 100vh;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

.cadastro-container {
    display: flex;
    height: 100vh;
    width: 100%;
}

/* ==================== LADO ESQUERDO (FORMULÁRIO) ==================== */

.cadastro-form {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    padding: 2rem;
    box-shadow: 4px 0 12px rgba(0, 0, 0, 0.05);
    z-index: 2;
}

.form-box {
    width: 100%;
    max-width: 450px;
    background: #fff;
}

.form-box h2 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #001f3f;
    margin-bottom: 1rem;
    text-align: center;
}

.form-box p {
    color: #555;
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 2rem;
}

.form-control {
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 0.8rem;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-control:focus {
    border-color: #002b5b;
    box-shadow: 0 0 0 0.2rem rgba(0, 43, 91, 0.25);
}

.btn-cadastrar {
    background: #002b5b;
    color: #fff;
    border: none;
    border-radius: 10px;
    width: 100%;
    padding: 0.9rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cadastrar:hover {
    background: #004080;
    transform: translateY(-2px);
}

/* ==================== LADO DIREITO (FUNDO AZUL) ==================== */

.cadastro-slide {
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, #0e3d6bff, #103f74ff);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

.benefits-text {
    color: #fff;
    text-align: center;
    margin-bottom: 2rem;
}

.benefits-text h2 {
    font-size: 2.0rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.benefits-text p {
    font-size: 1rem;
    color: #e0e7ff;
}

/* Notebook flutuando */
.notebook-area {
    margin-top: 4%;
}

.notebook-img {
    max-width: 430px;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
    animation: flutuar 4s ease-in-out infinite;
}

@keyframes flutuar {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.feature {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(4px);
    transition: transform 0.3s, background 0.3s;
    white-space: nowrap;
}

.feature:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.feature-top-left {
    top: -30px;
    left: -120px;
}

.feature-top-right {
    top: -30px;
    right: -120px;
}

.feature-bottom-left {
    bottom: -20px;
    left: -100px;
}

.feature-bottom-right {
    bottom: -20px;
    right: -100px;
}

/* ==================== BENEFITS ICONS ==================== */

/* Esconde por padrão */
.benefits-icons {
    display: none;
}

/* Só mostra em LG+ */
@media (min-width: 992px) {
    .benefits-icons {
        display: flex;
        margin-top: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.8rem;
    }

    .benefits-icons span {
        display: flex;
        align-items: center;
        gap: 6px;
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 30px;
        padding: 6px 14px;
        font-size: 0.9rem;
        color: #f0f6ff;
        backdrop-filter: blur(3px);
        transition: all 0.3s ease;
    }

    .benefits-icons span:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: scale(1.05);
    }

    .benefits-icons i {
        color: #00c3ff;
        font-size: 1.1rem;
    }
}

/* ==================== RESPONSIVO < 992PX ==================== */

@media (max-width: 992px) {
    .cadastro-container {
        flex-direction: column;
        min-height: 100vh;
        overflow-y: auto;
    }

    .cadastro-slide {
        width: 100%;
        height: 350px;
        justify-content: flex-start;
        padding: 3rem 1rem;
    }

    .notebook-area {
        display: none;
    }

    .cadastro-form {
        position: absolute;
        top: 90%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 95%;
        background: #fff;
        border-radius: 20px;
        padding: 2rem 1.5rem;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
        z-index: 2;
    }

    .feature {
        display: none;
    }
}

@media (max-width: 576px) {
    .benefits-text h2 {
        font-size: 1.5rem;
    }

    .benefits-text p {
        font-size: 1.2rem;
    }
}

/* ==================== BOTÃO VOLTAR ==================== */
/* Ocultar por padrão (somente SM) */
.benefits-icons {
    display: none;
}

/* Mostrar a partir de MD (>=768px) */
@media (min-width: 768px) {
    .benefits-icons {
        display: flex;
        margin-top: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.8rem;
    }

    .benefits-icons span {
        display: flex;
        align-items: center;
        gap: 6px;
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 30px;
        padding: 6px 14px;
        font-size: 0.9rem;
        color: #f0f6ff;
        backdrop-filter: blur(3px);
        transition: all 0.3s ease;
    }

    .benefits-icons span:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: scale(1.05);
    }

    .benefits-icons i {
        color: #00c3ff;
        font-size: 1.1rem;
    }
}

.btn-voltar {
    position: fixed;
    top: 20px;
    left: 20px;
    background-color: transparent;
    border: none;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    color: #333;
    z-index: 1000;
    cursor: pointer;
    transition: color 0.2s;
}

.btn-voltar:hover {
    color: #0d6efd;
}

.logo-footer {
    width: 150px;
}

/* Telas menores (até 576px) */
@media (max-width: 576px) {
    .logo-footer {
        width: 110px;
        /* diminui */
        bottom: 10px;
        /* sobe um pouco */
    }
}