/*===== ANDRÉ SILVA | LEGAL ARCHITECTURE 2026 =====*/
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&family=Space+Mono&display=swap");

:root {
    --first-color: #0099ff;
    --accent-color: #00ff85;
    --bg-dark: #0b1120;
    --text-color: #94a3b8;
    --title-color: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

body {
    margin: 0;
    padding: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    background-color: var(--bg-dark);
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
    background-size: 40px 40px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/*===== FORÇAR CENTRO NO MAIN =====*/
.l-main {
    flex: 1;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important; /* Centra horizontalmente */
    justify-content: center !important;
    text-align: center !important;
    padding: 10rem 1.5rem 6rem !important;
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 900px !important;
}

/* Garante que qualquer div dentro do main também se centre */
.l-main div {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    color: var(--text-color) !important;
}

/*===== TÍTULOS E TEXTO =====*/
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--title-color) !important;
    margin-bottom: 3rem !important;
    width: 100% !important;
}

h2 {
    font-family: "Space Mono", monospace;
    color: var(--accent-color) !important;
    margin: 3rem 0 1rem !important;
    width: 100% !important;
}

p {
    max-width: 700px !important; /* Limita a largura para leitura confortável */
    margin-bottom: 1.5rem !important;
    color: var(--text-color) !important;
    line-height: 1.8;
}

/*===== BOX DE CONTACTO (CENTRALIZADA) =====*/
ul {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2.5rem !important;
    list-style: none;
    text-align: left !important; /* Texto dentro da box alinhado à esquerda */
    display: inline-block !important;
    margin-top: 2rem !important;
    backdrop-filter: blur(10px);
}

ul li {
    margin-bottom: 0.8rem;
    color: var(--text-color) !important;
}

/*===== HEADER & BUTTON =====*/
.l-header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    background: rgba(11, 17, 32, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}

.nav {
    height: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.button {
    background: var(--first-color) !important;
    color: #fff !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.footer {
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}