/* --- CONFIGURAÇÕES GERAIS E CORES --- */
:root {
    --primary: #1a2a3a;
    --accent: #c1a35f;
    --light: #f8f9fa;
    --dark: #0f171f;
    --text: #333333;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

header {
    background: var(--white);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: -0.5px;
    color: var(--primary);
    text-transform: uppercase;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--accent);
}

.lang-selector {
    font-size: 0.8rem;
    font-weight: bold;
    padding-left: 20px;
    border-left: 1px solid #eee;
}

.lang-selector button {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary);
    font-weight: bold;
    padding: 5px;
}

.lang-selector button:hover {
    color: var(--accent);
}

.hero {
    height: 90vh;
    background: linear-gradient(rgba(15, 23, 31, 0.7), rgba(15, 23, 31, 0.7)), 
                url('https://images.unsplash.com/photo-1503387762-592dea58ef23?auto=format&fit=crop&q=80&w=1920'); 
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    margin-top: 60px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    max-width: 800px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn {
    background: var(--accent);
    color: var(--white);
    padding: 16px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: transform 0.2s, background 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #a88d4d;
    transform: translateY(-2px);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

h2::after {
    content: '';
    width: 50px;
    height: 3px;
    background: var(--accent);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    padding: 40px;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 5px solid var(--accent);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
}

.card h3 {
    margin-bottom: 20px;
    color: var(--primary);
}

.card ul {
    list-style: none;
}

.card ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.bg-dark {
    background: var(--primary);
    color: var(--white);
}

.contact-form {
    max-width: 600px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    font-family: inherit;
    font-size: 1rem;
}

footer {
    padding: 40px;
    text-align: center;
    background: var(--dark);
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
}

.sobre-texto p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #4a5568;
    text-align: justify;
}

.sobre-texto strong {
    color: var(--accent);
    font-weight: 700;
}

.sobre-imagem img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 20px 20px 0px var(--accent);
}

@media (max-width: 768px) {
    nav { flex-direction: column; gap: 15px; }
    .hero h1 { font-size: 1.8rem; }
    .sobre-grid { grid-template-columns: 1fr; text-align: center; }
    .sobre-imagem { order: 2; margin-top: 20px; }
    .sobre-texto { order: 1; }
    .sobre-imagem img { box-shadow: 10px 10px 0px var(--accent); }
}

.disclaimer-galeria {
    max-width: 900px;
    margin: 40px auto 0;
    padding: 0 20px;
    text-align: center;
}

.disclaimer-galeria p {
    font-size: 0.75rem;
    color: #888;
    line-height: 1.5;
    font-style: italic;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

/* --- AJUSTE FINAL DO TELEFONE --- */
.iti {
    display: block !important; 
    width: 100% !important;
}

#phone {
    padding-left: 95px !important; 
}

@media (max-width: 768px) {
    #phone {
        padding-left: 90px !important;
    }
}
/* --- RESTAURAÇÃO DO BOTÃO SEÇÃO BIM --- */
.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 20px;
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--primary); /* Inverte a cor para leitura no hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(193, 163, 95, 0.3);
}

/* Ajuste de espaçamento para o container de detalhes que abre */
#bim-detalhes {
    display: none; 
    margin-top: 40px; 
    padding: 40px 30px; /* Aumentamos o padding superior para 40px */
    background: #222; 
    border-radius: 8px; 
    text-align: left; 
    line-height: 1.6;
    border: 1px solid rgba(193, 163, 95, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    #bim-detalhes {
        padding: 30px 20px; /* Ajuste leve para telas menores */
    }
}