:root {
    --color-background: #001f32;
    --color-text: #e0e0e0;
    --color-gold: #d19f33;
    --color-gold-dark: #c1901d;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Lora', serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.7;
    margin: 0;
    background-color: var(--color-background);
    color: var(--color-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* HERO SECTION - TELA INICIAL */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
}

.brasao {
    width: auto;
    height: auto;
    max-width: 900px;
    max-height: 900px;
    margin-bottom: 5px;
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
    line-height: 1.2;
    max-width: 800px;
}

/* SEÇÕES DE CONTEÚDO */
.section {
    padding: 120px 20px;
}

.section-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-gold);
    margin-bottom: 30px;
    font-weight: 600;
}

.section-text {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-text);
    max-width: 700px;
    margin: 0 auto;
}

/* SEÇÃO DE CONTATO DESTACADA */
.section-highlight {
    background-color: rgba(0, 0, 0, 0.1);
}

.contact-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.contact-item {
    font-size: 1.2rem;
    font-weight: 400;
}

.contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--color-text);
    text-decoration: none;
    padding: 15px 25px;
    border: 1px solid var(--color-gold-dark);
    border-radius: 50px;
    transition: all 0.3s ease;
    min-width: 260px;
    box-sizing: border-box;
}

.contact-button:hover {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-background);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-button i {
    font-size: 1.5rem;
    color: var(--color-gold-dark);
    transition: color 0.3s ease;
}

.contact-button:hover i {
    color: var(--color-background);
}

/* RODAPÉ */
.site-footer {
    text-align: center;
    padding: 40px 20px;
    background-color: rgba(0, 0, 0, 0.2);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}


/* ===== INÍCIO DOS ESTILOS DO FORMULÁRIO ===== */
#contact-form {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}
.form-group {
    margin-bottom: 25px;
}
.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-text);
    opacity: 0.8;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border-radius: 8px;
    border: 1px solid var(--color-gold-dark);
    background-color: rgba(0, 0, 0, 0.2);
    color: #fff;
    font-size: 1rem;
    font-family: var(--font-primary);
    box-sizing: border-box;
    transition: all 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 15px rgba(209, 159, 51, 0.25);
}
.submit-button {
    display: block;
    width: 100%;
    padding: 18px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: var(--font-secondary);
    color: var(--color-background);
    background-color: var(--color-gold);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.submit-button:hover {
    background-color: #fff;
    color: var(--color-background);
    transform: translateY(-3px);
}
/* ===== FIM DOS ESTILOS DO FORMULÁRIO ===== */


/* AJUSTES PARA TELAS MENORES */
@media (max-width: 920px) {
    .contact-grid {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 20px;
    }
    .brasao {
        width: 85vw;
        height: auto;
        max-width: 450px;
        max-height: none;
    }
}