/* Variáveis e Reset */
:root {
    --primary-blue: #1a252f;
    --text-color: #444;
    --bg-light: #f8f9fa;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-sans); color: var(--text-color); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.text-center { text-align: center; }
.text-white { color: white; }

/* Tipografia */
.title-serif {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

/* === HERO SECTION (IGUAL À FOTO 2) === */
.hero {
    position: relative;
    height: 100vh;
    /* Mantida sua imagem Plaza_de_Armas.JPG */
    background: url('../img/Plaza_de_Armas.JPG') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero .overlay {
    display: none; /* Foto clara sem filtro escuro conforme a Foto 2 */
}

.hero-content { 
    position: relative; 
    z-index: 2; 
    color: white; 
    padding: 20px;
    width: 100%;
    /* Sombra projetada para garantir leitura sobre o fundo claro */
    text-shadow: 0 4px 20px rgba(0,0,0,0.5); 
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: 8.5rem; /* FONTE MASSIVA CONFORME PRINT DA FOTO 2 */
    font-weight: 400;
    line-height: 0.8; /* Efeito de letras compactadas verticalmente */
    margin-bottom: 5px;
}

.hero h2 {
    font-family: var(--font-sans);
    font-size: 1.1rem; 
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 10px; /* ESPAÇAMENTO LARGO CONFORME A FOTO 2 */
    margin-bottom: 80px; /* DESCE O BOTÃO PARA A POSIÇÃO CORRETA */
}

/* Botão CONSULTAS Exato */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #ffffff;
    color: #1a252f;
    text-decoration: none;
    padding: 15px 45px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
}

.btn-whatsapp i {
    color: #25D366; /* Verde oficial do ícone WhatsApp */
    font-size: 1.2rem;
}

.btn-whatsapp:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}


/* === SEÇÕES DE CONTEÚDO (NÃO MODIFICADAS) === */
.section-split { padding: 80px 0; display: flex; align-items: center; gap: 60px; }
.text-block, .image-block { flex: 1; }

.caption-box {
    background: white;
    padding: 20px;
    text-align: center;
    border: 1px solid #eee;
    width: 85%;
    margin: -30px auto 0;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    font-size: 0.9rem;
}

/* Galeria com Moldura da Foto 2 */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding-bottom: 40px;
}

.gallery-item img { 
    width: 100%; 
    height: 420px; 
    object-fit: cover; 
}

.caption-border { 
    border: 1px solid #ddd; 
    padding: 15px; 
    text-align: center; 
    font-size: 0.85rem; 
    margin-top: 10px;
    color: #666;
}

/* Ofertas */
.section-gray { background-color: var(--bg-light); padding: 80px 0; }
.offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.offer-card { background: white; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.offer-card img { height: 200px; width: 100%; object-fit: cover; }
.offer-content { padding: 25px; }
.offer-content h3 { font-family: var(--font-serif); margin-bottom: 10px; color: var(--primary-blue); }

/* In The Press */
.press-section {
    background: url('../img/depfuera.jpeg') no-repeat center center/cover;
    background-attachment: fixed;
    position: relative;
}
.press-overlay { background: rgba(26, 37, 47, 0.7); padding: 100px 0; text-align: center; }
.press-quotes p { font-size: 1.2rem; font-style: italic; margin-bottom: 20px; }

/* Rodapé */
.main-footer { background-color: var(--primary-blue); color: white; padding: 60px 0; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col h3 { font-family: var(--font-serif); margin-bottom: 20px; font-size: 1.2rem; }
.footer-col p { margin-bottom: 10px; opacity: 0.8; font-size: 0.9rem; }
.footer-col i { margin-right: 10px; }
.social-icons a { color: white; margin-right: 15px; font-size: 1.2rem; transition: 0.3s; }
.social-icons a:hover { opacity: 0.7; }
.btn-footer {
    margin-top: 20px; background: transparent; border: 1px solid white; color: white;
    padding: 10px 25px; text-transform: uppercase; cursor: pointer; transition: 0.3s;
}
.btn-footer:hover { background: white; color: var(--primary-blue); }

/* Animações */
.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Responsividade Mobile */
@media (max-width: 768px) {
    .hero h1 { font-size: 3.2rem; } 
    .hero h2 { font-size: 0.8rem; letter-spacing: 4px; }
    .section-split, .gallery-grid, .offers-grid, .footer-grid { display: flex; flex-direction: column; }
    .gallery-item img { height: 280px; }
}