/* ===========================================
   RESET
=========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #0f141d;
    color: #e5e5e5;
    line-height: 1.6;
}

/* Containers */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ===========================================
   CABEÇALHO
=========================================== */
.site-header {
    background: #0a0f18;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 40px;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: bold;
    color: #fff;
}

.gold {
    color: #d4af37;
}

.menu {
    list-style: none;
    display: flex;
    gap: 25px;
}

.menu li a {
    text-decoration: none;
    color: #e5e5e5;
    font-size: 16px;
    transition: 0.3s;
}

.menu li a:hover {
    color: #d4af37;
}

/* ===========================================
   HERO
=========================================== */
.hero {
    text-align: center;
    padding: 70px 20px;
    background: linear-gradient(135deg, #1c2636, #111722);
    border-radius: 8px;
    margin-bottom: 50px;
}

.hero-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 18px;
    color: #c9ced8;
    max-width: 750px;
    margin: auto;
}

/* ===========================================
   SECTION - ARTIGOS
=========================================== */
.sec-title {
    font-size: 26px;
    margin-bottom: 30px;
    border-left: 4px solid #d4af37;
    padding-left: 10px;
    color: #fff;
}

.card {
    background: #161c27;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0px 6px 14px rgba(0,0,0,0.2);
}

.card h3 {
    color: #fff;
    margin-bottom: 10px;
}

.card p {
    color: #cfd4dc;
    margin-bottom: 15px;
}

.btn-card {
    display: inline-block;
    padding: 10px 16px;
    background: #d4af37;
    color: #000;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-card:hover {
    background: #f1cc62;
}

/* ===========================================
   FOOTER
=========================================== */
footer {
    text-align: center;
    padding: 25px 0;
    margin-top: 50px;
    background: #0a0f18;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #c9ced8;
}

/* ===========================================
   PÁGINAS INTERNAS
=========================================== */
.page-section {
    background: #121824;
    padding: 55px 0;
}

.page-box {
    background: #161c27;
    max-width: 900px;
    margin: auto;
    padding: 35px 40px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0px 8px 18px rgba(0,0,0,0.25);
}

.page-box h1,
.page-box h2,
.page-box h3 {
    color: #fff;
    margin-bottom: 15px;
}

.page-box p,
.page-box li {
    color: #ced3da;
    font-size: 17px;
    margin-bottom: 15px;
}

.page-box ul {
    padding-left: 22px;
}

/* ===========================================
   FORMULÁRIO DE CONTATO
=========================================== */
.contato-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.contato-form input,
.contato-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.15);
    background: #0f141d;
    color: #fff;
    font-size: 16px;
    resize: none;
}

.contato-form textarea {
    height: 140px;
}

.contato-form button {
    padding: 12px 18px;
    background: #d4af37;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.contato-form button:hover {
    background: #f1cc62;
}

/* ===========================================
   RESPONSIVIDADE
=========================================== */
@media (max-width: 768px) {
    .header-flex {
        flex-direction: column;
        gap: 18px;
    }

    .menu {
        gap: 18px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-title {
        font-size: 26px;
    }
}

/* ===========================================
   PÁGINA HEADER (SOBRE, CONTATO, ETC)
=========================================== */
.page-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(212,175,55,0.3);
}

.page-header h1 {
    color: #d4af37;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
}

.page-header .subtitle {
    color: #c9ced8;
    font-size: 18px;
    font-style: italic;
}

/* ===========================================
   SEÇÕES DE CONTEÚDO
=========================================== */
.content-section {
    margin-bottom: 35px;
}

.content-section h2 {
    color: #d4af37;
    font-size: 26px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(212,175,55,0.2);
}

.content-section h3 {
    color: #f1cc62;
    font-size: 20px;
    margin: 20px 0 12px 0;
}

.content-section strong {
    color: #f1cc62;
}

.content-section a {
    color: #d4af37;
    text-decoration: underline;
    transition: 0.3s;
}

.content-section a:hover {
    color: #f1cc62;
}

/* ===========================================
   FORMULÁRIOS
=========================================== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #d4af37;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 15px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid rgba(212,175,55,0.3);
    background: #0f141d;
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 2px rgba(212,175,55,0.1);
}

.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background: #d4af37;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #f1cc62;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212,175,55,0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: #d4af37;
    color: #000;
}

/* ===========================================
   CTA SECTION
=========================================== */
.cta-section {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #1c2636, #111722);
    border-radius: 12px;
    margin-top: 50px;
}

.cta-section h2 {
    color: #d4af37;
    font-size: 28px;
    margin-bottom: 15px;
}

.cta-section p {
    color: #c9ced8;
    font-size: 17px;
    margin-bottom: 25px;
}

.cta-content .btn-primary,
.cta-content .btn-secondary {
    margin: 10px;
}

/* ===========================================
   CONTACT INFO
=========================================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

.contact-info-section h2,
.contact-form-section h2 {
    color: #d4af37;
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-info-section h3 {
    color: #f1cc62;
    font-size: 18px;
    margin: 25px 0 10px 0;
}

.contact-info-item {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(212,175,55,0.05);
    border-radius: 8px;
    border-left: 3px solid #d4af37;
}

.note {
    color: #c9ced8;
    font-size: 14px;
    font-style: italic;
    margin-top: 8px;
}

/* Mobile */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 28px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ===========================================
   PRIMEIRAS PALAVRAS EM DOURADO
=========================================== */
.content-section p:first-of-type::first-line {
    color: #f1cc62;
    font-weight: 500;
}

.page-box > p:first-of-type {
    color: #f1cc62;
    font-size: 18px;
    font-weight: 500;
}

.content-section > p:first-child {
    font-size: 18px;
}

/* Destaque em listas */
.content-section ul li strong,
.page-box ul li strong {
    color: #d4af37;
}

/* Parágrafos após títulos com destaque */
.content-section h2 + p,
.content-section h3 + p {
    color: #e8edf3;
}
