/* CSS Puro de Alta Performance */
:root {
    --bg-top: #85c2df;
    --bg-bottom: #add7eb;
    --text-blue: #0f4b7a; /* Azul escuro do MEEPE */
    --text-num: #85c2df;
    --btn-bg: #ffffff;
    --btn-destaque: #85c2df; /* Fundo do botao restrito */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.card-container {
    width: 100%;
    max-width: 414px; /* Mobile size max */
    background: linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    overflow-x: hidden;
}

/* Decorativo sutil de background (Network nodes concept) */
.bg-pattern {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.15) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 0;
    pointer-events: none;
}

.header, .links-container, .footer {
    position: relative;
    z-index: 1;
}

.header {
    text-align: center;
    padding: 25px 20px 10px;
}

.logo {
    margin-bottom: 20px;
}

.logo img {
    max-width: 160px;
    height: auto;
}

.slogan-top {
    color: var(--text-blue);
    font-size: 1.15rem;
    line-height: 1.25;
    font-weight: 800;
    margin-bottom: 20px;
}

.links-container {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}

.link-btn {
    background: var(--btn-bg);
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #1a1a1a;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 3px 6px rgba(0,0,0,0.06);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.link-btn:active {
    transform: scale(0.98);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.num {
    color: var(--text-num);
    font-size: 1.1rem;
    font-weight: 800;
    margin-right: 12px;
    min-width: 12px;
    text-align: center;
}

.icon {
    width: 22px;
    height: 22px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon svg {
    width: 100%;
    height: 100%;
}

.text {
    flex-grow: 1;
}

/* Estilo do botão destacado (Restrito) */
.link-btn.destaque {
    background: var(--btn-destaque);
    color: #ffffff;
}

.link-btn.destaque .num {
    color: #ffffff;
    opacity: 0.9;
}

.footer {
    text-align: center;
    padding-top: 25px;
    margin-top: auto;
}

.slogan-bottom {
    color: var(--text-blue);
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 25px;
    padding: 0 20px;
    line-height: 1.3;
}

.agency-footer {
    background: #ffffff;
    padding: 18px 20px 25px; /* bottom padding extra for modern phones */
    font-size: 0.8rem;
    color: #4a4a4a;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    line-height: 1.4;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.03);
}

.agency-footer a {
    color: #1a1a1a;
    font-weight: 800;
    text-decoration: underline;
    transition: color 0.2s;
}

.agency-footer a:active {
    color: var(--text-num);
}
