/* manutencao.css – página de manutenção Embaixada Santos FC Campinas */

:root {
    --color-bg: #050505;
    --color-bg-alt: #101010;
    --color-card: #141414;
    --color-primary: #ffffff;
    --color-muted: #b3b3b3;
    --color-gold: #d4af37;
    --color-gold-soft: #f0dea0;
    --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.7);
    --radius-md: 14px;
    --radius-lg: 20px;
    --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Reset básico */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
}

body {
    background: radial-gradient(circle at top, #242424 0, #050505 40%, #000 100%);
    color: var(--color-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 40px; /* espaço superior geral */
}

/* Fundo com efeito */
.bg-overlay {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 10% 0%, rgba(212, 175, 55, 0.15) 0, transparent 45%),
        radial-gradient(circle at 90% 100%, rgba(255, 255, 255, 0.07) 0, transparent 50%);
    pointer-events: none;
    opacity: 0.9;
}

/* Container principal */
.wrapper {
    position: relative;
    z-index: 1;
    max-width: 960px;
    width: 100%;
    padding: 24px;
}

.card {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.9), rgba(12, 12, 12, 0.98));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: var(--shadow-soft);
    padding: 28px 24px 22px;
}

/* Cabeçalho */
.card-header {
    margin-bottom: 22px;
}

/* LOGO TOPO */
.logo-top {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.logo-top img {
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.8));
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #000;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-soft));
    margin-bottom: 10px;
}

.badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #00ff7b;
    box-shadow: 0 0 10px rgba(0, 255, 123, 0.8);
}

.card-header h1 {
    font-size: clamp(1.7rem, 2.3vw, 2.1rem);
    margin-bottom: 8px;
}

.subtitle {
    font-size: 0.98rem;
    color: var(--color-muted);
    max-width: 680px;
}

/* Contatos */
.contacts {
    margin: 18px 0 18px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contacts h2 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.contacts-intro {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin-bottom: 10px;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 14px;
}

.contact-card {
    background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.18), rgba(20, 20, 20, 0.96));
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px 14px 12px;
}

.contact-card h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin-bottom: 6px;
}

.contact-phone {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--color-gold-soft);
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.4);
    transition: transform 0.1s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.contact-phone:hover {
    background: rgba(212, 175, 55, 0.12);
    box-shadow: 0 0 18px rgba(212, 175, 55, 0.45);
    transform: translateY(-1px);
}

/* Instagram */
.instagram-section {
    margin: 16px 0;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ig-highlight {
    background: linear-gradient(130deg, #101010, #050505);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 14px 14px 14px;
    position: relative;
    overflow: hidden;
}

.ig-highlight::after {
    content: "";
    position: absolute;
    inset: -60%;
    opacity: 0.07;
    background:
        radial-gradient(circle at 0 0, rgba(212, 175, 55, 0.7) 0, transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.6) 0, transparent 50%);
    pointer-events: none;
}

.ig-highlight > * {
    position: relative;
    z-index: 1;
}

.ig-label {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #000;
    background: #ffd54f;
    padding: 3px 9px;
    border-radius: 999px;
    margin-bottom: 6px;
}

.ig-highlight h2 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.ig-highlight p {
    font-size: 0.92rem;
    color: var(--color-muted);
    max-width: 640px;
    margin-bottom: 8px;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 6px;
    padding: 9px 14px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #fdc830, #f37335);
    color: #000;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.6);
    transition: transform 0.1s ease, box-shadow 0.15s ease;
}

.btn-instagram:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.8);
}

.small-note {
    font-size: 0.8rem;
    color: var(--color-muted);
    margin-top: 6px;
}

/* Rodapé */
.footer {
    margin-top: 16px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center; /* centraliza a frase */
}

/* Rodapé legal / créditos */
.legal-footer {
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.8rem;
    color: var(--color-muted);
    text-align: center;
}

.legal-footer a {
    color: var(--color-gold); /* dourado para AYGO */
    text-decoration: none;
    font-weight: 600;
}

.legal-footer a:hover {
    text-decoration: underline;
}

/* Responsivo */
@media (max-width: 640px) {
    body {
        padding-top: 24px;
    }

    .wrapper {
        padding: 16px;
    }

    .card {
        padding: 20px 16px 18px;
    }

    .logo-top img {
        max-width: 180px;
    }

    .card-header h1 {
        font-size: 1.4rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .ig-highlight h2 {
        font-size: 1.05rem;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
    }

    .btn-instagram {
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Ajustes extras para telas bem pequenas */
@media (max-width: 400px) {
    .card {
        padding: 18px 12px 16px;
    }

    .card-header h1 {
        font-size: 1.25rem;
    }

    .subtitle {
        font-size: 0.85rem;
    }

    .contacts h2 {
        font-size: 1rem;
    }

    .contact-card p {
        font-size: 0.85rem;
    }

    .btn-instagram {
        font-size: 0.9rem;
    }
}
