/* index.css — Estilos da landing page */

:root {
    --primary: #003087;
    --primary-light: #0047cc;
    --secondary: #b71c1c;
    --bg: #f0f2f5;
    --card-bg: rgba(255, 255, 255, 0.95);
    --text: #1a237e;
    --text-muted: #546e7a;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, #003087 0%, #001f5c 100%);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 500px;
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.card {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border-radius: 28px;
    padding: 50px 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.brand-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 35px;
    text-align: center;
}

.brand-logo {
    max-height: 95px;
    width: auto;
    object-fit: contain;
    margin-bottom: 18px;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.08));
    transition: transform 0.3s ease;
}

.brand-logo:hover { transform: scale(1.03); }

.brand-title-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.brand-main-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.5px;
    line-height: 1.1;
    text-transform: uppercase;
}

.brand-sub-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 4.5px;
    line-height: 1.1;
    text-transform: uppercase;
    margin-left: 4.5px;
}

.brand-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 99px;
    margin: 15px 0 12px;
}

.brand-page-subtitle {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.menu-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 22px 25px;
    background: #fff;
    border: 2px solid #eef0f5;
    border-radius: 20px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.menu-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 48, 135, 0.08);
    background: #fcfdfe;
}

.menu-item:active { transform: translateY(0); }

.menu-icon {
    width: 48px;
    height: 48px;
    background: #f0f4ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.menu-item:hover .menu-icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(-5deg) scale(1.1);
}

.menu-content { text-align: left; }

.menu-title {
    display: block;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 2px;
}

.menu-desc {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
}

.arrow {
    margin-left: auto;
    color: #cbd5e1;
    transition: transform 0.3s ease;
}

.menu-item:hover .arrow {
    transform: translateX(5px);
    color: var(--primary);
}

footer {
    text-align: center;
    margin-top: 30px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.badge-new {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--secondary);
    color: white;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 35px;
    transform: rotate(45deg);
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
