/* ==========================================
   CONFIGURAÇÕES GERAIS E VARIÁVEIS
   ========================================== */
:root {
    --dourado: #c6a86b;
    --dourado-claro: #e0c89a;
    --texto: #1a1a1a;
    --branco-gelo: rgba(255, 255, 255, 0.92);
}

body {
    margin: 0;
    font-family: serif, sans-serif; 
    color: var(--texto);
    background-image: url("https://imgur.com/0Ccxyou.png"); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
    line-height: 1.6;
}

/* ==========================================
   SEÇÃO HERO (TOPO DO SITE)
   ========================================== */
.hero {
    min-height: 95vh;
    max-width: 1200px; 
    margin: 20px auto; 
    border-radius: 40px; 
    overflow: hidden; 
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1)); 
    background-size: cover; 
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 80px;
    color: white;
    box-sizing: border-box;
}

.assinatura {
    font-family: 'Alex Brush', cursive;
    font-size: 35px;
    color: var(--dourado-claro);
    display: block;
    margin-bottom: -15px;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 110px;
    font-weight: 300; 
    font-style: italic;
    letter-spacing: -5px;
    line-height: 0.8;
    margin: 0;
}

/* ==========================================
   SEÇÃO SERVIÇOS E LOCALIZAÇÃO
   ========================================== */
.servicos {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.localizacao {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

/* CARDS GERAIS */
.card, .card-local {
    background: var(--branco-gelo);
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: 0.5s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.card {
    flex-direction: column;
    margin-bottom: 0;
    height: 100%;
}

.card:hover { 
    transform: translateY(-10px); 
}

/* ELEMENTOS INTERNOS DOS CARDS */
.card-img {
    width: 100%;
    height: 200px;
    -webkit-mask-image: none;
    mask-image: none;
    border-radius: 25px;
    overflow: hidden;
}

.card-img img, 
.mapa-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

.mapa-container {
    width: 50%;
    height: 400px;
    position: relative;
}

.card-content, 
.local-content {
    padding: 60px;
    flex: 1;
}

.card-content {
    padding: 25px;
    text-align: center;
}

.local-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    color: var(--dourado);
    margin-bottom: 15px;
}

/* ==========================================
   BOTÕES
   ========================================== */
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 16px 45px;
    text-decoration: none;
    color: #4a3b00;
    border-radius: 40px;
    background: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728);
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(179, 135, 40, 0.4);
    cursor: pointer;
    border: none;
}

.btn:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
}

/* ==========================================
   MODAL OVERLAY
   ========================================== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    justify-content: center; 
    align-items: center;
}

.modal-content {
    background: #000; 
    width: 90%; 
    max-width: 1000px;
    height: 80vh; 
    border-radius: 20px; 
    position: relative;
    overflow: hidden;
}

.close-btn {
    position: absolute; 
    top: 15px; 
    right: 20px;
    color: white; 
    font-size: 35px; 
    cursor: pointer; 
    z-index: 10;
}

/* ==========================================
   MEDIA QUERIES (RESPONSIVIDADE)
   ========================================== */
@media (max-width: 900px) {
    .hero h1 { 
        font-size: 60px; 
        padding-bottom: 20px; 
    }
    
    .card, .card-local { 
        flex-direction: column; 
    }
    
    .card-img, .mapa-container { 
        width: 100%; 
        height: 300px; 
    }

    .card-content, .local-content {
        padding: 10px;
        text-align: center;
    }
}