:root {
    --bg: #f4efe6;
    --bg-soft: #efe7d8;
    --text: #191919;
    --muted: #5c5447;
    --gold: #8b672d;
    --gold-dark: #6f5020;
    --card: #ffffff;
    --border: rgba(25, 25, 25, 0.12);
    --shadow: 0 24px 60px rgba(25, 25, 25, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: "Inter", Arial, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(139, 103, 45, 0.16), transparent 35%),
        linear-gradient(180deg, #faf7f1 0%, var(--bg) 100%);
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(14px);
    background: rgba(244, 239, 230, 0.82);
    border-bottom: 1px solid rgba(25, 25, 25, 0.06);
}

.header-inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: "Cinzel", Georgia, serif;
}

.brand img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 1.02rem;
    letter-spacing: 0.02em;
}

.brand small {
    color: var(--gold);
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    margin-top: 2px;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--muted);
    font-weight: 600;
}

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

.hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 42px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(130deg, rgba(25, 25, 25, 0.95), rgba(35, 30, 24, 0.72)),
        url("Imagens/logo_info.jpeg") center/cover no-repeat;
    opacity: 0.98;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto -8% -28% auto;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 103, 45, 0.38), transparent 70%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 34px;
    align-items: center;
    min-height: 540px;
}

.hero-copy {
    color: #f8f3ea;
    padding: 28px 0;
}

.eyebrow,
.section-kicker {
    margin: 0 0 14px;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: #c8b07f;
}

.hero h1,
.section h2 {
    margin: 0;
    font-family: "Cinzel", Georgia, serif;
    line-height: 1.08;
}

.hero h1 {
    font-size: clamp(2.7rem, 6vw, 5.4rem);
    max-width: 10ch;
}

.lead,
.section-text,
.contact-copy p,
.info-card p,
.footer-inner p {
    color: rgba(248, 243, 234, 0.82);
    line-height: 1.7;
    font-size: 1.02rem;
}

.lead {
    max-width: 60ch;
    margin: 22px 0 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    color: #fefcf8;
    background: linear-gradient(135deg, var(--gold) 0%, #a17b37 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.button-secondary {
    color: #f8f3ea;
    border: 1px solid rgba(248, 243, 234, 0.28);
    background: rgba(255, 255, 255, 0.06);
}

.hero-card {
    position: relative;
    padding: 18px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero-card img {
    width: 100%;
    border-radius: 22px;
    object-fit: cover;
}

.section {
    padding: 84px 0;
}

.section h2 {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    max-width: 14ch;
}

.section .section-text {
    color: var(--muted);
    margin: 0;
    max-width: 56ch;
}

.split,
.contact-grid,
.callout-inner {
    display: grid;
    gap: 24px;
    align-items: start;
}

.split {
    grid-template-columns: 1fr 1fr;
}

.section-muted {
    background: linear-gradient(180deg, rgba(139, 103, 45, 0.08), rgba(255, 255, 255, 0));
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 26px;
}

.info-card,
.contact-form {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(25, 25, 25, 0.06);
}

.info-card {
    padding: 28px;
}

.info-card h3 {
    margin: 0 0 14px;
    font-family: "Cinzel", Georgia, serif;
    font-size: 1.2rem;
}

.info-card p {
    color: var(--muted);
    margin: 0;
}

.callout {
    padding-top: 20px;
}

.callout-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 30px 34px;
    border-radius: 28px;
    background: linear-gradient(135deg, #221d17, #0f0d0b);
    color: #f8f3ea;
    box-shadow: var(--shadow);
}

.callout h2 {
    color: #f8f3ea;
}

.callout-phone {
    font-family: "Cinzel", Georgia, serif;
    font-size: 1.4rem;
    color: #d7bf90;
}

.contact-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 32px;
}

.contact-copy {
    padding-right: 12px;
}

.contact-copy h2 {
    color: var(--text);
    max-width: 12ch;
}

.contact-copy p {
    color: var(--muted);
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 26px 0 0;
    display: grid;
    gap: 14px;
}

.contact-list li {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(139, 103, 45, 0.08);
    border: 1px solid rgba(139, 103, 45, 0.12);
    color: var(--text);
}

.contact-list span {
    display: block;
    margin-bottom: 6px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--gold-dark);
    font-weight: 700;
}

.contact-form {
    padding: 28px;
}

.form-status {
    min-height: 24px;
    margin-bottom: 14px;
}

.success,
.error {
    margin: 0;
    padding: 14px 16px;
    border-radius: 14px;
    font-weight: 600;
}

.success {
    color: #164b21;
    background: rgba(22, 75, 33, 0.08);
}

.error {
    color: #8f1d1d;
    background: rgba(143, 29, 29, 0.08);
}

.contact-form label {
    display: grid;
    gap: 8px;
    margin-top: 16px;
    font-weight: 600;
    color: var(--text);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border-radius: 14px;
    border: 1px solid rgba(25, 25, 25, 0.14);
    background: #fff;
    color: var(--text);
    font: inherit;
    outline: none;
}

.contact-form textarea {
    min-height: 140px;
    padding: 14px 16px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(139, 103, 45, 0.58);
    box-shadow: 0 0 0 4px rgba(139, 103, 45, 0.12);
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.button-full {
    width: 100%;
    margin-top: 22px;
    border: 0;
    cursor: pointer;
    font: inherit;
}

.site-footer {
    padding: 28px 0 42px;
    border-top: 1px solid rgba(25, 25, 25, 0.08);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    color: var(--muted);
}

.footer-inner strong {
    display: block;
    color: var(--text);
    margin-bottom: 6px;
}

.footer-inner p {
    color: var(--muted);
}

@media (max-width: 960px) {
    .hero-grid,
    .split,
    .contact-grid,
    .callout-inner,
    .cards {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 42px;
    }

    .hero-copy {
        padding-top: 8px;
    }

    .hero-card {
        max-width: 640px;
    }

    .section h2,
    .contact-copy h2 {
        max-width: none;
    }

    .footer-inner {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 1120px);
    }

    .header-inner {
        flex-direction: column;
        justify-content: center;
        padding: 16px 0;
        min-height: auto;
    }

    .nav {
        justify-content: center;
        gap: 14px 18px;
        font-size: 0.95rem;
    }

    .hero-grid {
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .lead {
        font-size: 0.98rem;
    }

    .section,
    .hero {
        padding-bottom: 54px;
    }

    .contact-form,
    .info-card,
    .callout-inner {
        border-radius: 22px;
    }
}
