:root {
    --preto: #1c1c1c;
    --marrom: #2a1f1a;
    --dourado: #c6a75e;
    --bege: #f4efe9;
    --branco: #ffffff;
    --cinza: #444;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--bege);
    color: var(--cinza);
    line-height: 1.7;
}

/* HEADER */
.header {
    text-align: center;
    padding: 40px 20px;
    background: var(--preto);
    color: var(--branco);
}

.header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.header p {
    font-size: 1.2rem;
    font-weight: 400;
}

/* NAV */
.nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 15px;
    background: var(--branco);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

.nav a {
    text-decoration: none;
    color: var(--marrom);
    font-weight: 500;
    transition: 0.3s;
}

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

/* HERO */
.hero {
    position: relative;
    background: url("images/hero.jpeg") center/cover no-repeat;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(28,28,28,0.55);
}

.hero-content {
    position: relative;
    max-width: 800px;
    padding: 20px;
    color: var(--branco);
    animation: fadeIn 1s ease-in-out;
}

.hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

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

/* BOTÕES */
.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-primary {
    background: var(--dourado);
    color: var(--preto);
    margin-right: 10px;
}

.btn-primary:hover {
    background: #b69250;
}

.btn-secondary {
    border: 2px solid var(--dourado);
    color: var(--dourado);
}

.btn-secondary:hover {
    background: var(--dourado);
    color: var(--preto);
}

/* SEÇÕES */
.section {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 50px;
}

/* DIREÇÃO */
.direcao-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.direcao-foto img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}

.direcao-foto img:hover {
    transform: scale(1.02);
}

.direcao-texto p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.localizacao {
    font-weight: 500;
    color: var(--marrom);
}

/* SERVIÇOS */
.cards {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.card {
    background: var(--branco);
    padding: 30px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* CTA */
.cta {
    text-align: center;
    background: var(--marrom);
    color: var(--branco);
    padding: 80px 20px;
}

.cta .btn-primary {
    font-size: 1.1rem;
}

.footer {
    background: var(--preto);
    color: var(--branco);
    padding: 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-buttons {
    margin: 25px 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
}

.footer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--dourado);
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease, color 0.35s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.footer-btn svg {
    width: 24px;
    height: 24px;
    color: #4b2e2a; /* marrom café */
}

.footer-btn:hover svg {
    color: var(--dourado); /* mantém dourado no hover */
}

.footer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--dourado);
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease, color 0.35s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.footer-btn:hover {
    transform: translateY(-3px) scale(1.15);
    background: var(--marrom);
    box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

.footer p {
    margin: 5px 0;
}


/* ANIMAÇÃO HERO */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVO */
@media (max-width: 1024px) {
    .hero h2 {
        font-size: 2.4rem;
    }

    .direcao-container {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .direcao-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
}
