/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        Helvetica,
        sans-serif;

    background: #f5f7fb;
    color: #1f2937;
}


/* =====================================================
   LOGIN
===================================================== */

.tela-login {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 24px;

    background:
        radial-gradient(
            circle at top left,
            rgba(37, 99, 235, 0.16),
            transparent 35%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(124, 58, 237, 0.14),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #f8fafc 0%,
            #eef2ff 50%,
            #f8fafc 100%
        );
}

.login-card {
    width: min(430px, 100%);

    padding: 42px 38px 34px;

    background: rgba(255, 255, 255, 0.94);

    border: 1px solid rgba(255, 255, 255, 0.8);

    border-radius: 24px;

    box-shadow:
        0 25px 70px rgba(15, 23, 42, 0.12),
        0 8px 25px rgba(15, 23, 42, 0.06);

    backdrop-filter: blur(12px);

    text-align: center;
}

.login-logo {
    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #4f46e5
        );

    font-size: 38px;

    box-shadow:
        0 12px 28px rgba(37, 99, 235, 0.25);
}

.login-card h1 {
    font-size: 32px;
    font-weight: 750;
    letter-spacing: -0.8px;

    color: #111827;

    margin-bottom: 6px;
}

.login-subtitulo {
    color: #6b7280;
    font-size: 15px;

    margin-bottom: 32px;
}


/* =====================================================
   CAMPOS DO LOGIN
===================================================== */

.login-card .campo {
    text-align: left;
    margin-bottom: 20px;
}

.login-card .campo label {
    display: block;

    margin-bottom: 8px;

    color: #374151;

    font-size: 13px;
    font-weight: 650;
}

.login-card .campo input {
    width: 100%;

    height: 50px;

    padding: 0 15px;

    border: 1px solid #dbe1ea;
    border-radius: 12px;

    background: #f9fafb;

    color: #111827;

    font-size: 15px;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.login-card .campo input::placeholder {
    color: #9ca3af;
}

.login-card .campo input:hover {
    border-color: #c7d0dd;
}

.login-card .campo input:focus {
    background: #ffffff;

    border-color: #2563eb;

    box-shadow:
        0 0 0 4px rgba(37, 99, 235, 0.10);
}


/* =====================================================
   ERRO DE LOGIN
===================================================== */

.erro-login {
    width: 100%;

    padding: 12px 14px;

    margin-bottom: 18px;

    border: 1px solid #fecaca;
    border-radius: 10px;

    background: #fef2f2;

    color: #b91c1c;

    font-size: 13px;
    line-height: 1.4;

    text-align: left;
}

.oculto {
    display: none !important;
}


/* =====================================================
   BOTÃO ENTRAR
===================================================== */

.btn-login {
    width: 100%;
    height: 52px;

    margin-top: 4px;

    border: none;
    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #4f46e5
        );

    color: #ffffff;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 10px 24px rgba(37, 99, 235, 0.22);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        opacity 0.2s ease;
}

.btn-login:hover {
    transform: translateY(-1px);

    box-shadow:
        0 14px 30px rgba(37, 99, 235, 0.28);
}

.btn-login:active {
    transform: translateY(0);
}

.btn-login:disabled {
    cursor: not-allowed;
    opacity: 0.7;
    transform: none;
}


/* =====================================================
   ESQUECI A SENHA
===================================================== */

.esqueci-senha {
    display: inline-block;

    margin-top: 22px;

    color: #2563eb;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    transition: color 0.2s ease;
}

.esqueci-senha:hover {
    color: #1d4ed8;
    text-decoration: underline;
}


/* =====================================================
   CONTAINER
===================================================== */

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}


/* =====================================================
   TOPO
===================================================== */

.topo {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 24px 0;
}

.topo-conteudo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topo h1 {
    font-size: 28px;
    margin-bottom: 6px;
}

.topo p {
    color: #6b7280;
    font-size: 14px;
}


/* =====================================================
   BOTÕES
===================================================== */

.btn {
    border: none;
    border-radius: 10px;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-principal {
    background: #2563eb;
    color: white;
}

.btn-principal:hover {
    background: #1d4ed8;
}

.btn-secundario {
    background: #e5e7eb;
    color: #374151;
}

.btn-secundario:hover {
    background: #d1d5db;
}


/* =====================================================
   RESUMO
===================================================== */

.resumo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.card-resumo {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.card-resumo span {
    display: block;
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 8px;
}

.card-resumo strong {
    font-size: 30px;
}


/* =====================================================
   CABEÇALHO DA LISTA
===================================================== */

.cabecalho-lista {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.cabecalho-lista h2 {
    font-size: 21px;
    margin-bottom: 5px;
}

.cabecalho-lista p {
    color: #6b7280;
    font-size: 14px;
}

#campoBusca {
    width: 280px;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background: white;
    outline: none;
}

#campoBusca:focus {
    border-color: #2563eb;
}


/* =====================================================
   LISTA
===================================================== */

.lista {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-bottom: 40px;
}


/* =====================================================
   ESTADO VAZIO
===================================================== */

.estado-vazio {
    grid-column: 1 / -1;
    background: white;
    border: 1px dashed #d1d5db;
    border-radius: 16px;
    padding: 60px 20px;
    text-align: center;
}

.icone-vazio {
    font-size: 48px;
    margin-bottom: 15px;
}

.estado-vazio h3 {
    margin-bottom: 8px;
}

.estado-vazio p {
    color: #6b7280;
    margin-bottom: 20px;
}


/* =====================================================
   CARD DO ANIVERSARIANTE
===================================================== */

.card-aniversariante {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.card-imagem {
    width: 100%;
    height: 210px;
    background: #e5e7eb;
    overflow: hidden;
}

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

.card-sem-imagem {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: #9ca3af;
}

.card-info {
    padding: 18px;
}

.card-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.card-data {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 15px;
}

.card-acoes {
    display: flex;
    gap: 8px;
}

.card-acoes button {
    flex: 1;
}


/* =====================================================
   MODAL
===================================================== */

.modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;
    z-index: 1000;
}

.modal.oculto {
    display: none;
}

.modal-conteudo {
    width: min(520px, 100%);
    max-height: 90vh;
    overflow-y: auto;

    background: white;
    border-radius: 18px;
    padding: 25px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.modal-cabecalho {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px;
}

.modal-cabecalho h2 {
    margin-bottom: 5px;
}

.modal-cabecalho p {
    color: #6b7280;
    font-size: 14px;
}

.btn-fechar {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #f3f4f6;
    font-size: 24px;
    cursor: pointer;
}


/* =====================================================
   FORMULÁRIO
===================================================== */

.campo {
    margin-bottom: 18px;
}

.campo label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 7px;
}

.campo input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    outline: none;
    font-size: 14px;
}

.campo input:focus {
    border-color: #2563eb;
}

.campo small {
    display: block;
    margin-top: 6px;
    color: #6b7280;
    font-size: 12px;
}

.linha {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}


/* =====================================================
   PREVIEW
===================================================== */

.preview-imagem {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    background: #f3f4f6;
}

.preview-imagem.oculto {
    display: none;
}

.modal-visualizar-imagem.oculto {
    display: none;
}

.preview-imagem img {
    display: block;
    width: 100%;
    max-height: 300px;
    object-fit: contain;
}


/* =====================================================
   AÇÕES DO MODAL
===================================================== */

.modal-acoes {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 25px;
}


/* =====================================================
   GALERIA DE IMAGENS
===================================================== */

.modal-galeria {
    max-width: 900px;
}

.galeria-upload {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 24px;
}

.galeria-lista {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.galeria-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    transition: 0.2s ease;
}

.galeria-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.galeria-imagem {
    position: relative;
    width: 160px;
    aspect-ratio: 4 / 5;
    margin: 0 auto;
    background: #e2e8f0;
    overflow: hidden;
    cursor: pointer;
}

.galeria-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.galeria-selecionada {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #16a34a;
    color: white;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.galeria-acoes {
    display: flex;
    gap: 8px;
    padding: 12px;
}

.galeria-acoes .btn {
    flex: 1;
    font-size: 13px;
    padding: 9px 10px;
}

.btn-selecionar {
    background: #2563eb;
    color: white;
}

.btn-selecionar:hover {
    background: #1d4ed8;
}

.btn-excluir {
    background: #fee2e2;
    color: #b91c1c;
}

.btn-excluir:hover {
    background: #fecaca;
}

.galeria-vazia {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: #64748b;
}


/* =====================================================
   VISUALIZAÇÃO AMPLIADA
===================================================== */

.modal-visualizar-imagem {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    background: rgba(0, 0, 0, 0.85);
}

.modal-visualizar-imagem img {
    max-width: 95vw;
    max-height: 90vh;

    width: auto;
    height: auto;

    object-fit: contain;

    border-radius: 8px;

    box-shadow:
        0 20px 60px
        rgba(0, 0, 0, 0.4);
}

.btn-fechar-visualizacao {
    position: absolute;

    top: 20px;
    right: 25px;

    width: 45px;
    height: 45px;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.15);
    color: white;

    font-size: 32px;
    line-height: 1;

    cursor: pointer;

    z-index: 10000;
}

.btn-fechar-visualizacao:hover {
    background: rgba(255, 255, 255, 0.25);
}

.btn-excluir-modal {
    background: #fee2e2;
    color: #b91c1c;
}

.btn-excluir-modal:hover {
    background: #fecaca;
}

.galeria-instrucao {
    text-align: center;
    padding: 8px 10px 0;
    color: #64748b;
    font-size: 12px;
}


/* =====================================================
   RESPONSIVO
===================================================== */

@media (max-width: 900px) {

    .lista {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 650px) {

    .login-card {
        padding: 34px 24px 28px;
        border-radius: 20px;
    }

    .login-card h1 {
        font-size: 28px;
    }

    .login-logo {
        width: 64px;
        height: 64px;
        font-size: 34px;
    }

    .topo-conteudo {
        flex-direction: column;
        align-items: flex-start;
    }

    .topo .btn {
        width: 100%;
    }

    .resumo {
        grid-template-columns: 1fr;
    }

    .cabecalho-lista {
        flex-direction: column;
        align-items: stretch;
    }

    #campoBusca {
        width: 100%;
    }

    .lista {
        grid-template-columns: 1fr;
    }

    .linha {
        grid-template-columns: 1fr;
    }

}


/* =====================================================
   RESPONSIVO - GALERIA
===================================================== */

@media (max-width: 600px) {

    .modal-galeria {
        width: 95%;
    }

    .galeria-lista {
        grid-template-columns: 1fr;
    }

    .galeria-upload {
        justify-content: stretch;
    }

    .galeria-upload .btn {
        width: 100%;
        text-align: center;
    }

}




/* =====================================================
   LANDING PAGE PÚBLICA
===================================================== */

.landing-container {
    width: min(1180px, 92%);
    margin: 0 auto;
}


/* =====================================================
   HEADER
===================================================== */

.landing-header {
    position: sticky;
    top: 0;
    z-index: 100;

    background: rgba(255, 255, 255, 0.92);

    border-bottom: 1px solid #e5e7eb;

    backdrop-filter: blur(14px);
}

.landing-nav {
    min-height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.landing-logo {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #111827;

    font-size: 21px;
    font-weight: 800;

    text-decoration: none;
}

.landing-logo-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: linear-gradient(
        135deg,
        #2563eb,
        #4f46e5
    );

    font-size: 22px;

    box-shadow:
        0 8px 20px rgba(37, 99, 235, 0.2);
}

.landing-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.landing-menu a:not(.landing-btn) {
    color: #4b5563;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition: color 0.2s ease;
}

.landing-menu a:not(.landing-btn):hover {
    color: #2563eb;
}


/* =====================================================
   BOTÕES LANDING
===================================================== */

.landing-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 0 20px;

    border-radius: 11px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.landing-btn:hover {
    transform: translateY(-2px);
}

.landing-btn-primary {
    color: white;

    background: linear-gradient(
        135deg,
        #2563eb,
        #4f46e5
    );

    box-shadow:
        0 10px 25px rgba(37, 99, 235, 0.22);
}

.landing-btn-primary:hover {
    box-shadow:
        0 14px 30px rgba(37, 99, 235, 0.3);
}

.landing-btn-outline {
    color: #2563eb !important;

    border: 1px solid #bfdbfe;

    background: #eff6ff;

    padding: 0 17px;
}

.landing-btn-light {
    color: #374151;

    background: white;

    border: 1px solid #e5e7eb;
}

.landing-btn-light:hover {
    background: #f9fafb;
}

.landing-btn-white {
    color: #1d4ed8;

    background: white;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.12);
}


/* =====================================================
   HERO
===================================================== */

.landing-hero {
    position: relative;

    overflow: hidden;

    padding: 95px 0 105px;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(37, 99, 235, 0.13),
            transparent 32%
        ),
        radial-gradient(
            circle at 90% 70%,
            rgba(124, 58, 237, 0.12),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #f8fafc,
            #eef2ff 55%,
            #f8fafc
        );
}

.landing-hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 0.9fr);

    align-items: center;

    gap: 70px;
}

.landing-badge {
    display: inline-flex;

    align-items: center;

    padding: 8px 13px;

    margin-bottom: 20px;

    border: 1px solid #dbeafe;

    border-radius: 30px;

    background: #eff6ff;

    color: #1d4ed8;

    font-size: 12px;
    font-weight: 700;
}

.landing-hero-text h1 {
    max-width: 680px;

    color: #111827;

    font-size: clamp(38px, 5vw, 62px);

    line-height: 1.04;

    letter-spacing: -2.5px;

    margin-bottom: 24px;
}

.landing-hero-text h1 span {
    color: #2563eb;
}

.landing-hero-text > p {
    max-width: 590px;

    color: #64748b;

    font-size: 18px;

    line-height: 1.7;

    margin-bottom: 32px;
}

.landing-hero-acoes {
    display: flex;

    align-items: center;

    gap: 12px;

    flex-wrap: wrap;
}

.landing-confiança {
    display: flex;

    align-items: center;

    gap: 8px;

    flex-wrap: wrap;

    margin-top: 24px;

    color: #64748b;

    font-size: 12px;
}

.landing-confiança span {
    color: #16a34a;

    font-weight: 800;

    margin-left: 7px;
}


/* =====================================================
   PREVIEW DO SISTEMA
===================================================== */

.landing-preview {
    position: relative;
}

.preview-window {
    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.8);

    border-radius: 20px;

    background: white;

    box-shadow:
        0 30px 80px rgba(15, 23, 42, 0.16),
        0 10px 30px rgba(15, 23, 42, 0.08);

    transform: rotate(1deg);
}

.preview-topbar {
    height: 48px;

    display: flex;
    align-items: center;

    padding: 0 16px;

    border-bottom: 1px solid #e5e7eb;

    background: #f8fafc;
}

.preview-dots {
    display: flex;

    gap: 6px;
}

.preview-dots span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #cbd5e1;
}

.preview-title {
    flex: 1;

    text-align: center;

    color: #64748b;

    font-size: 11px;
    font-weight: 600;
}

.preview-body {
    padding: 25px;
}

.preview-heading {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 22px;
}

.preview-heading strong {
    display: block;

    color: #111827;

    font-size: 16px;

    margin-bottom: 5px;
}

.preview-heading small {
    display: block;

    color: #94a3b8;

    font-size: 10px;
}

.preview-add {
    padding: 8px 11px;

    border-radius: 8px;

    background: #2563eb;

    color: white;

    font-size: 10px;
    font-weight: 700;
}

.preview-cards {
    display: grid;

    gap: 10px;
}

.preview-card {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 12px;

    border: 1px solid #eef2f7;

    border-radius: 12px;

    background: #ffffff;
}

.preview-avatar {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 10px;

    background: #eff6ff;

    font-size: 21px;
}

.preview-card strong {
    display: block;

    color: #334155;

    font-size: 12px;

    margin-bottom: 4px;
}

.preview-card small {
    color: #94a3b8;

    font-size: 10px;
}

.preview-whatsapp {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 18px;

    padding: 14px;

    border-radius: 12px;

    background: #f0fdf4;

    border: 1px solid #dcfce7;
}

.preview-whatsapp-icon {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #16a34a;

    color: white;

    font-size: 15px;
    font-weight: 800;
}

.preview-whatsapp strong {
    display: block;

    color: #166534;

    font-size: 11px;

    margin-bottom: 4px;
}

.preview-whatsapp small {
    color: #4ade80;

    font-size: 9px;
}


/* =====================================================
   SEÇÕES
===================================================== */

.landing-section {
    padding: 100px 0;
}

.landing-section-gray {
    background: #f8fafc;

    border-top: 1px solid #eef2f7;
    border-bottom: 1px solid #eef2f7;
}

.landing-section-heading {
    max-width: 650px;

    margin: 0 auto 55px;

    text-align: center;
}

.landing-section-heading > span {
    display: block;

    color: #2563eb;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 12px;
}

.landing-section-heading h2 {
    color: #111827;

    font-size: clamp(30px, 4vw, 43px);

    line-height: 1.1;

    letter-spacing: -1.5px;

    margin-bottom: 16px;
}

.landing-section-heading p {
    color: #64748b;

    font-size: 16px;

    line-height: 1.7;
}


/* =====================================================
   PASSOS
===================================================== */

.landing-steps {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.landing-step {
    position: relative;

    padding: 32px;

    border: 1px solid #e5e7eb;

    border-radius: 18px;

    background: white;

    box-shadow:
        0 5px 20px rgba(15, 23, 42, 0.04);
}

.step-number {
    position: absolute;

    top: 20px;
    right: 24px;

    color: #dbeafe;

    font-size: 28px;
    font-weight: 800;
}

.step-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 14px;

    background: #eff6ff;

    font-size: 25px;
}

.landing-step h3 {
    color: #111827;

    font-size: 19px;

    margin-bottom: 10px;
}

.landing-step p {
    color: #64748b;

    font-size: 14px;

    line-height: 1.65;
}


/* =====================================================
   RECURSOS
===================================================== */

.landing-features {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.landing-feature {
    padding: 28px;

    border: 1px solid #e5e7eb;

    border-radius: 16px;

    background: white;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.landing-feature:hover {
    transform: translateY(-4px);

    box-shadow:
        0 14px 30px rgba(15, 23, 42, 0.08);
}

.feature-icon {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 12px;

    background: #eff6ff;

    font-size: 22px;
}

.landing-feature h3 {
    color: #1f2937;

    font-size: 16px;

    margin-bottom: 8px;
}

.landing-feature p {
    color: #64748b;

    font-size: 13px;

    line-height: 1.6;
}


/* =====================================================
   CTA
===================================================== */

.landing-cta {
    padding: 80px 0;
}

.landing-cta-box {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 55px;

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            #1d4ed8,
            #4f46e5
        );

    box-shadow:
        0 25px 60px rgba(37, 99, 235, 0.22);
}

.landing-cta-box > div {
    max-width: 650px;
}

.landing-cta-box span {
    display: block;

    margin-bottom: 12px;

    color: #bfdbfe;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;
}

.landing-cta-box h2 {
    color: white;

    font-size: clamp(28px, 4vw, 40px);

    line-height: 1.1;

    letter-spacing: -1px;

    margin-bottom: 12px;
}

.landing-cta-box p {
    color: #dbeafe;

    font-size: 15px;

    line-height: 1.6;
}


/* =====================================================
   RODAPÉ
===================================================== */

.landing-footer {
    padding: 30px 0;

    border-top: 1px solid #e5e7eb;

    background: white;
}

.landing-footer-content {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    color: #94a3b8;

    font-size: 12px;
}

.landing-footer strong {
    color: #334155;
}

.landing-footer p {
    margin-top: 5px;
}


/* =====================================================
   RESPONSIVO LANDING
===================================================== */

@media (max-width: 900px) {

    .landing-hero {
        padding: 70px 0 80px;
    }

    .landing-hero-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .landing-hero-text {
        text-align: center;
    }

    .landing-hero-text > p {
        margin-left: auto;
        margin-right: auto;
    }

    .landing-hero-acoes {
        justify-content: center;
    }

    .landing-confiança {
        justify-content: center;
    }

    .landing-steps {
        grid-template-columns: 1fr;
    }

    .landing-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .landing-cta-box {
        flex-direction: column;

        align-items: flex-start;
    }

}


@media (max-width: 650px) {

    .landing-nav {
        min-height: 68px;
    }

    .landing-menu {
        gap: 10px;
    }

    .landing-menu a:not(.landing-btn) {
        display: none;
    }

    .landing-logo {
        font-size: 19px;
    }

    .landing-logo-icon {
        width: 38px;
        height: 38px;

        font-size: 20px;
    }

    .landing-hero {
        padding: 55px 0 65px;
    }

    .landing-hero-text h1 {
        font-size: 38px;

        letter-spacing: -1.5px;
    }

    .landing-hero-text > p {
        font-size: 16px;
    }

    .landing-hero-acoes {
        flex-direction: column;

        align-items: stretch;
    }

    .landing-hero-acoes .landing-btn {
        width: 100%;
    }

    .landing-preview {
        width: 100%;
    }

    .preview-window {
        transform: none;
    }

    .landing-section {
        padding: 70px 0;
    }

    .landing-features {
        grid-template-columns: 1fr;
    }

    .landing-cta {
        padding: 55px 0;
    }

    .landing-cta-box {
        padding: 35px 25px;
    }

    .landing-cta-box .landing-btn {
        width: 100%;
    }

    .landing-footer-content {
        flex-direction: column;

        align-items: flex-start;
    }

}




/* =====================================================
   PÁGINA SOLICITAR CADASTRO
===================================================== */

.cadastro-page {
    min-height: calc(100vh - 140px);

    display: flex;
    align-items: center;

    padding: 70px 20px;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(37, 99, 235, 0.10),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(79, 70, 229, 0.10),
            transparent 35%
        ),
        #f8fafc;
}


/* =====================================================
   SEÇÃO
===================================================== */

.cadastro-section {
    width: 100%;

    display: flex;
    justify-content: center;
}


/* =====================================================
   CARD
===================================================== */

.cadastro-card {
    width: min(720px, 100%);

    padding: 50px;

    background: white;

    border: 1px solid #e5e7eb;

    border-radius: 24px;

    box-shadow:
        0 25px 70px rgba(15, 23, 42, 0.10);

    text-align: center;
}


/* =====================================================
   ÍCONE
===================================================== */

.cadastro-icon {
    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 22px;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #4f46e5
        );

    font-size: 32px;

    box-shadow:
        0 12px 30px rgba(37, 99, 235, 0.22);
}


/* =====================================================
   TÍTULOS
===================================================== */

.cadastro-card h1 {
    color: #111827;

    font-size: clamp(28px, 4vw, 40px);

    letter-spacing: -1.2px;

    margin-bottom: 14px;
}

.cadastro-subtitulo {
    max-width: 520px;

    margin: 0 auto 38px;

    color: #64748b;

    font-size: 16px;

    line-height: 1.7;
}


/* =====================================================
   FORMULÁRIO
===================================================== */

.cadastro-card form {
    text-align: left;
}

.cadastro-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 0 18px;
}

.campo-full {
    grid-column: 1 / -1;
}


/* =====================================================
   SELECT
===================================================== */

.cadastro-card select {
    width: 100%;

    padding: 12px 14px;

    border: 1px solid #d1d5db;

    border-radius: 10px;

    background: white;

    outline: none;

    font-size: 14px;

    color: #374151;
}

.cadastro-card select:focus {
    border-color: #2563eb;

    box-shadow:
        0 0 0 3px rgba(37, 99, 235, 0.08);
}


/* =====================================================
   TEXTAREA
===================================================== */

.cadastro-card textarea {
    width: 100%;

    resize: vertical;

    min-height: 110px;

    padding: 12px 14px;

    border: 1px solid #d1d5db;

    border-radius: 10px;

    outline: none;

    font-family: inherit;

    font-size: 14px;
}

.cadastro-card textarea:focus {
    border-color: #2563eb;

    box-shadow:
        0 0 0 3px rgba(37, 99, 235, 0.08);
}


/* =====================================================
   CAMPO OPCIONAL
===================================================== */

.campo-opcional {
    color: #9ca3af;

    font-size: 12px;

    font-weight: 400;
}


/* =====================================================
   BOTÃO
===================================================== */

.cadastro-btn {
    width: 100%;

    border: none;

    margin-top: 8px;

    min-height: 52px;

    font-size: 15px;
}


/* =====================================================
   AVISO
===================================================== */

.cadastro-aviso {
    margin-top: 18px;

    color: #94a3b8;

    text-align: center;

    font-size: 12px;

    line-height: 1.6;
}


/* =====================================================
   VOLTAR
===================================================== */

.cadastro-voltar {
    display: inline-block;

    margin-top: 28px;

    color: #2563eb;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;
}

.cadastro-voltar:hover {
    text-decoration: underline;
}


/* =====================================================
   MENSAGENS
===================================================== */

.cadastro-mensagem {
    margin-bottom: 18px;

    padding: 13px 15px;

    border-radius: 10px;

    font-size: 14px;

    text-align: center;
}

.cadastro-mensagem.oculto {
    display: none;
}

.cadastro-mensagem.sucesso {
    color: #166534;

    background: #dcfce7;

    border: 1px solid #bbf7d0;
}

.cadastro-mensagem.erro {
    color: #b91c1c;

    background: #fee2e2;

    border: 1px solid #fecaca;
}


/* =====================================================
   RESPONSIVO - CADASTRO
===================================================== */

@media (max-width: 650px) {

    .cadastro-page {
        padding: 40px 15px;
    }

    .cadastro-card {
        padding: 35px 22px;

        border-radius: 20px;
    }

    .cadastro-grid {
        grid-template-columns: 1fr;
    }

    .campo-full {
        grid-column: auto;
    }

    .cadastro-card h1 {
        font-size: 29px;
    }

}