/* =====================================================
   BLOCK DESIGN — Website Principal
   Ficheiro: block-design.css
   ===================================================== */
 
/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 
:root {
    --bg-dark:     #0A0A0A;
    --bg-mid:      #111111;
    --bg-card:     #161616;
    --gold:        #C8A96E;
    --gold-dim:    #8A6F3E;
    --gold-light:  rgba(200, 169, 110, 0.08);
    --white:       #F4F1EB;
    --gray-lt:     #CCCCCC;
    --gray:        #888888;
    --gray-dk:     #444444;
    --border:      rgba(200, 169, 110, 0.12);
    --serif:       'Georgia', 'Times New Roman', serif;
    --sans:        'Calibri', 'Segoe UI', sans-serif;
}
 
html {
    scroll-behavior: smooth;
}
 
body {
    background-color: var(--bg-dark);
    color: var(--white);
    font-family: var(--sans);
    font-size: 1rem;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
 
a {
    color: inherit;
    text-decoration: none;
}
 
img {
    max-width: 100%;
    display: block;
}
 
/* ===== UTILITÁRIOS ===== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}
 
.container-narrow {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 40px;
}
 
.label-tag {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}
 
.gold-line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 24px;
}
 
.section-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}
 
.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}
 
/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
 
.navbar-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
 
.navbar-logo {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: bold;
    letter-spacing: 0.04em;
    color: var(--white);
}
 
.navbar-logo span {
    color: var(--gold);
}
 
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}
 
.navbar-nav a {
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    color: var(--gray);
    transition: color 0.2s;
}
 
.navbar-nav a:hover {
    color: var(--white);
}
 
.navbar-cta {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold) !important;
    border: 1px solid rgba(200, 169, 110, 0.3);
    padding: 8px 20px;
    transition: background-color 0.2s !important;
}
 
.navbar-cta:hover {
    background-color: var(--gold-light) !important;
    color: var(--gold) !important;
}
 
/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}
 
.hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: radial-gradient(ellipse at 70% 40%, rgba(200, 169, 110, 0.06) 0%, transparent 65%);
    pointer-events: none;
}
 
.hero-inner {
    position: relative;
    z-index: 1;
}
 
.hero-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 36px;
}
 
.hero-badge-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}
 
.hero-title {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    max-width: 820px;
    margin-bottom: 28px;
}
 
.hero-title em {
    font-style: italic;
    color: var(--gold);
}
 
.hero-subtitle {
    font-size: 1.05rem;
    color: var(--gray-lt);
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: 52px;
}
 
.hero-actions {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}
 
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--bg-dark);
    padding: 16px 40px;
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
    text-decoration: none;
}
 
.btn-primary:hover {
    background: #A8893E;
    transform: translateY(-2px);
}
 
.btn-secondary {
    font-size: 0.82rem;
    color: var(--gray);
    letter-spacing: 0.04em;
    transition: color 0.2s;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: rgba(136, 136, 136, 0.3);
}
 
.btn-secondary:hover {
    color: var(--white);
    text-decoration-color: var(--white);
}
 
.hero-deco {
    position: absolute;
    right: 0;
    bottom: 0;
    font-family: var(--serif);
    font-size: 28vw;
    line-height: 0.85;
    color: rgba(200, 169, 110, 0.03);
    pointer-events: none;
    user-select: none;
}
 
/* ===== PROBLEMA ===== */
.section-problemas {
    padding: 100px 0;
    border-top: 1px solid var(--border);
}
 
.problemas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 56px;
    border: 1px solid rgba(200, 169, 110, 0.1);
}
 
.problema-item {
    padding: 36px 40px;
    border-right: 1px solid rgba(200, 169, 110, 0.08);
    border-bottom: 1px solid rgba(200, 169, 110, 0.08);
    transition: background 0.2s;
}
 
.problema-item:hover {
    background: rgba(200, 169, 110, 0.03);
}
 
.problema-item:nth-child(2n) {
    border-right: none;
}
 
.problema-item:nth-last-child(-n+2) {
    border-bottom: none;
}
 
.problema-num {
    font-family: var(--serif);
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 14px;
    display: block;
    font-style: italic;
}
 
.problema-title {
    font-family: var(--serif);
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 400;
}
 
.problema-desc {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.75;
}
 
/* ===== TESTE ===== */
.section-teste {
    padding: 100px 0;
    background: var(--bg-mid);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
 
.teste-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 64px;
}
 
.teste-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
}
 
.teste-title em {
    color: var(--gold);
    font-style: italic;
}
 
.teste-desc {
    font-size: 0.92rem;
    color: var(--gray-lt);
    line-height: 1.8;
    margin-bottom: 32px;
}
 
.teste-stats {
    display: flex;
    gap: 40px;
}
 
.teste-stat-val {
    font-family: var(--serif);
    font-size: 2rem;
    color: var(--gold);
    font-style: italic;
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}
 
.teste-stat-label {
    font-size: 0.75rem;
    color: var(--gray);
    letter-spacing: 0.06em;
}
 
.dims-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: rgba(200, 169, 110, 0.1);
}
 
.dim-item {
    background: var(--bg-dark);
    padding: 28px 24px;
    transition: background 0.2s;
}
 
.dim-item:hover {
    background: rgba(200, 169, 110, 0.04);
}
 
.dim-icon {
    font-size: 1.4rem;
    color: var(--gold);
    display: block;
    margin-bottom: 14px;
}
 
.dim-name {
    font-family: var(--serif);
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 400;
}
 
.dim-desc {
    font-size: 0.78rem;
    color: var(--gray);
    line-height: 1.6;
}
 
/* ===== COMO FUNCIONA ===== */
.section-como {
    padding: 100px 0;
}
 
.passos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    margin-top: 56px;
}
 
.passo-item {
    background: var(--bg-dark);
    padding: 48px 40px;
    position: relative;
}
 
.passo-num {
    font-family: var(--serif);
    font-size: 3.5rem;
    color: rgba(200, 169, 110, 0.12);
    line-height: 1;
    margin-bottom: 24px;
    font-style: italic;
}
 
.passo-title {
    font-family: var(--serif);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 14px;
    font-weight: 400;
}
 
.passo-desc {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.75;
}
 
.passo-tag {
    display: inline-block;
    margin-top: 20px;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(200, 169, 110, 0.2);
    padding: 4px 12px;
}
 
/* ===== AUTORIDADE ===== */
.section-autoridade {
    padding: 100px 0;
    background: var(--bg-mid);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
 
.autoridade-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
 
.autoridade-title {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 24px;
}
 
.autoridade-title em {
    color: var(--gold);
    font-style: italic;
}
 
.autoridade-desc {
    font-size: 0.92rem;
    color: var(--gray-lt);
    line-height: 1.85;
    margin-bottom: 36px;
}
 
.autoridade-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
 
.autoridade-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    border: 1px solid rgba(200, 169, 110, 0.08);
    background: var(--bg-card);
}
 
.autoridade-item-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 7px;
}
 
.autoridade-item-text {
    font-size: 0.88rem;
    color: var(--gray-lt);
    line-height: 1.7;
}
 
.autoridade-item-text strong {
    color: var(--white);
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
    font-size: 0.92rem;
}
 
/* ===== CTA FINAL ===== */
.section-cta {
    padding: 120px 0;
}
 
.cta-box {
    border: 1px solid rgba(200, 169, 110, 0.2);
    padding: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
 
.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(200, 169, 110, 0.05) 0%, transparent 60%);
    pointer-events: none;
}
 
.cta-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
}
 
.cta-title em {
    color: var(--gold);
    font-style: italic;
}
 
.cta-desc {
    font-size: 0.95rem;
    color: var(--gray-lt);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.8;
    position: relative;
}
 
.cta-note {
    font-size: 0.75rem;
    color: var(--gray-dk);
    margin-top: 20px;
}
 
/* ===== FOOTER ===== */
.footer {
    border-top: 1px solid var(--border);
    padding: 36px 0;
}
 
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
 
.footer-logo {
    font-family: var(--serif);
    font-size: 0.95rem;
    font-weight: bold;
    color: var(--white);
}
 
.footer-logo span {
    color: var(--gold);
}
 
.footer-links {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}
 
.footer-links a {
    font-size: 0.78rem;
    color: var(--gray);
    transition: color 0.2s;
}
 
.footer-links a:hover {
    color: var(--gold);
}
 
.footer-copy {
    font-size: 0.72rem;
    color: var(--gray-dk);
    letter-spacing: 0.04em;
}
 
/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .navbar-nav {
        display: none;
    }
 
    .hero-title {
        font-size: clamp(2.2rem, 7vw, 3.5rem);
    }
 
    .problemas-grid {
        grid-template-columns: 1fr;
    }
 
    .problema-item {
        border-right: none;
    }
 
    .problema-item:nth-last-child(-n+2) {
        border-bottom: 1px solid rgba(200, 169, 110, 0.08);
    }
 
    .problema-item:last-child {
        border-bottom: none;
    }
 
    .teste-header {
        grid-template-columns: 1fr;
        gap: 40px;
    }
 
    .dims-grid {
        grid-template-columns: repeat(2, 1fr);
    }
 
    .dims-grid .dim-item:last-child {
        grid-column: 1 / -1;
    }
 
    .passos-grid {
        grid-template-columns: 1fr;
    }
 
    .autoridade-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
 
    .cta-box {
        padding: 48px 32px;
    }
}
 
@media (max-width: 600px) {
    .container,
    .container-narrow {
        padding: 0 24px;
    }
 
    .hero {
        padding: 100px 0 60px;
    }
 
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
 
    .teste-stats {
        gap: 28px;
    }
 
    .dims-grid {
        grid-template-columns: 1fr;
    }
 
    .dims-grid .dim-item:last-child {
        grid-column: auto;
    }
 
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* RELEASE_FINAL_V1_MAIN_CSS */


/* BLOCK_DESIGN_RELEASE_FINAL_MAIN_CSS */
