﻿:root {
    --bg: #f4eadf;
    --surface: rgba(255, 248, 241, 0.92);
    --surface-strong: #fff9f4;
    --surface-alt: rgba(104, 22, 36, 0.07);
    --text: #3b0f19;
    --muted: #68414a;
    --border: rgba(59, 15, 25, 0.14);
    --primary: #681624;
    --primary-dark: #470d17;
    --secondary: #9d5562;
    --accent: #d4a373;
    --whatsapp: #1faa59;
    --shadow: 0 22px 56px rgba(59, 15, 25, 0.14);
    --radius: 26px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(157, 85, 98, 0.18), transparent 30%),
        radial-gradient(circle at right center, rgba(212, 163, 115, 0.18), transparent 24%),
        linear-gradient(180deg, #fffdf9 0%, var(--bg) 100%);
}
a { color: inherit; text-decoration: none; }
p { margin: 0 0 16px; color: var(--muted); line-height: 1.75; }
h1, h2, h3 { margin: 0 0 16px; color: var(--text); line-height: 1.1; }
h1, h2 { font-family: 'Cormorant Garamond', serif; letter-spacing: 0.01em; }
h1 { font-size: clamp(2.8rem, 5.6vw, 5.4rem); }
h2 { font-size: clamp(2rem, 3.2vw, 3.3rem); }
h3 { font-size: 1.2rem; }
ul { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 32px), var(--container)); margin: 0 auto; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 249, 244, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(59, 15, 25, 0.08);
}
.nav-wrap {
    min-height: 118px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}
.brand-stack {
    display: inline-flex;
    align-items: center;
    gap: 18px;
}
.brand-logo {
    height: 94px;
    width: auto;
}
.brand-copy {
    display: grid;
    gap: 4px;
    max-width: 250px;
}
.brand-provider {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    line-height: 1;
    color: var(--primary);
}
.brand-subtitle {
    font-size: 0.78rem;
    line-height: 1.45;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    min-height: 124px;
}
.menu-item {
    position: relative;
}
.main-menu a:not(.btn) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 10px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.main-menu a.is-active,
.main-menu a:hover {
    background: rgba(104, 22, 36, 0.12);
    color: var(--primary);
    transform: translateY(-1px);
}
.has-submenu > a::after {
    content: '';
    width: 8px;
    height: 8px;
    margin-left: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    opacity: 0.7;
}
.submenu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 240px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 249, 244, 0.98);
    box-shadow: var(--shadow);
    display: grid;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}
.menu-item:hover .submenu,
.menu-item:focus-within .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.submenu a:not(.btn) {
    width: 100%;
    justify-content: flex-start;
    min-height: auto;
    padding: 12px 14px;
    border-radius: 14px;
    white-space: nowrap;
}
.menu-toggle {
    display: none;
    border: 1px solid var(--border);
    background: var(--surface-strong);
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 800;
    color: var(--text);
}
.nav-cta {
    margin-left: 10px;
    white-space: nowrap;
    padding-inline: 18px;
    font-size: 0.92rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn:hover {
    transform: translateY(-1px);
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    border-color: var(--border);
    color: var(--primary);
}
.btn-whatsapp {
    background: linear-gradient(135deg, #27c266 0%, var(--whatsapp) 100%);
    color: #fff;
    box-shadow: 0 18px 40px rgba(31, 170, 89, 0.24);
}

.page-hero {
    padding: 44px 0 36px;
}
.hero-shell,
.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
    gap: 28px;
    align-items: stretch;
}
.page-hero-home {
    padding-top: 58px;
}
.hero-copy,
.hero-panel,
.internal-hero-shell,
.soft-card,
.card,
.contact-form,
.feature-card,
.media-card {
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow);
}
.hero-copy {
    padding: 44px;
    background:
        linear-gradient(155deg, rgba(71, 13, 23, 0.96) 0%, rgba(104, 22, 36, 0.92) 56%, rgba(157, 85, 98, 0.88) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.hero-copy::after {
    content: '';
    position: absolute;
    right: -40px;
    top: -30px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
}
.hero-copy h1,
.hero-copy .lead,
.hero-copy .eyebrow {
    color: #fff;
    position: relative;
    z-index: 1;
}
.hero-panel {
    padding: 34px;
    background:
        linear-gradient(180deg, rgba(255, 249, 244, 0.96), rgba(212, 163, 115, 0.24));
}

.page-hero-internal {
    padding-top: 36px;
}
.internal-hero-shell {
    position: relative;
    overflow: hidden;
    min-height: 340px;
    padding: 48px;
    display: flex;
    align-items: flex-end;
    background:
        linear-gradient(90deg, rgba(59, 15, 25, 0.94) 0%, rgba(104, 22, 36, 0.84) 48%, rgba(157, 85, 98, 0.52) 100%),
        url('assets/banner-interna.jpg') center center / cover no-repeat;
}
.internal-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 38%);
}
.internal-hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}
.internal-hero-content h1,
.internal-hero-content .lead,
.internal-hero-content .eyebrow {
    color: #fff;
}

.eyebrow,
.section-tag,
.feature-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: inherit;
    font-weight: 800;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.section-tag {
    background: rgba(104, 22, 36, 0.1);
    color: var(--primary);
}
.lead {
    font-size: 1.08rem;
    max-width: 740px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.check-list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}
.check-list li {
    position: relative;
    padding-left: 24px;
    color: var(--muted);
}
.check-list li::before {
    content: '\2022';
    position: absolute;
    left: 8px;
    top: 0;
    color: var(--primary);
    font-weight: 800;
}

.section {
    padding: 42px 0;
}
.section.alt {
    background: linear-gradient(180deg, rgba(104, 22, 36, 0.05), rgba(255, 249, 244, 0.74));
}
.section-head {
    margin-bottom: 30px;
    max-width: 780px;
}
.section-head.center {
    text-align: center;
    margin-inline: auto;
}

.grid-2,
.contact-grid,
.footer-grid,
.cards.two,
.cards.three,
.feature-grid,
.split-highlight {
    display: grid;
    gap: 22px;
}
.grid-2,
.split-highlight {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}
.cards.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.cards.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.soft-card,
.card,
.feature-card,
.media-card {
    padding: 28px;
    background: var(--surface);
}
.highlight-card {
    min-height: 100%;
}
.action-card {
    display: grid;
    align-content: start;
    gap: 8px;
}
.action-card .btn {
    margin-top: 8px;
    width: fit-content;
}
.action-card-whatsapp {
    background: linear-gradient(180deg, rgba(39, 194, 102, 0.12), rgba(255, 248, 241, 0.96));
}
.feature-card {
    display: grid;
    align-content: start;
    gap: 16px;
}
.feature-label {
    width: fit-content;
    background: rgba(104, 22, 36, 0.12);
    color: var(--primary);
}
.feature-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 22px;
    border: 1px solid rgba(104, 22, 36, 0.08);
    background: #fff;
}
.text-link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    color: var(--primary);
    font-weight: 800;
}

.visual-grid {
    align-items: center;
}
.media-card {
    padding: 16px;
}
.full-media {
    width: 100%;
    border-radius: 20px;
}
.inline-media {
    width: 100%;
    margin-top: 22px;
    border-radius: 20px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.media-highlight {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background: #231118;
    color: #fff;
}
.media-highlight-image {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    opacity: 0.72;
}
.media-highlight-copy {
    position: absolute;
    inset: auto 0 0 0;
    padding: 28px;
    background: linear-gradient(180deg, transparent 0%, rgba(35, 17, 24, 0.18) 20%, rgba(35, 17, 24, 0.9) 100%);
}
.media-highlight-copy h2,
.media-highlight-copy p,
.media-highlight-copy .section-tag {
    color: #fff;
}
.media-highlight-copy .section-tag {
    background: rgba(255, 255, 255, 0.16);
}
.media-highlight-tall .media-highlight-image {
    min-height: 420px;
}
.vertigem-media-card {
    background:
        radial-gradient(circle at top right, rgba(55, 188, 231, 0.2), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(214, 237, 243, 0.92));
}
.vertigem-hero-image {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.alert-card {
    background: linear-gradient(180deg, rgba(104, 22, 36, 0.08), rgba(255, 248, 241, 0.96));
}

.profile-card {
    padding: 28px;
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 26px;
    align-items: start;
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.profile-photo {
    width: 150px;
    height: 190px;
    object-fit: cover;
    object-position: center top;
    border-radius: 28px;
    box-shadow: 0 18px 42px rgba(59, 15, 25, 0.16);
}

.contact-list {
    display: grid;
    gap: 12px;
    margin: 22px 0;
}
.contact-form {
    padding: 0;
    box-shadow: none;
    border: none;
    background: transparent;
}
.field-group {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}
.field-hidden {
    position: absolute;
    left: -9999px;
}
.recaptcha-wrap {
    margin-top: 6px;
}
label {
    font-weight: 800;
    color: var(--text);
}
input,
textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid var(--border);
    font: inherit;
    background: rgba(255, 255, 255, 0.88);
    color: var(--text);
}
textarea {
    resize: vertical;
    min-height: 140px;
}
.form-alert {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    font-weight: 700;
}
.form-alert-success {
    background: rgba(31, 170, 89, 0.14);
    color: #15613a;
}
.form-alert-error {
    background: rgba(104, 22, 36, 0.12);
    color: var(--primary-dark);
}

.site-footer {
    margin-top: 42px;
    background: #2f0911;
    color: #fff7f1;
}
.footer-grid {
    grid-template-columns: 1.15fr 0.8fr 0.95fr;
    padding: 42px 0;
}
.footer-brand-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.footer-logo {
    height: 92px;
    width: auto;
    flex-shrink: 0;
}
.footer-provider {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    line-height: 1;
    margin-bottom: 10px;
    color: #fff;
}
.site-footer h3 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 14px;
}
.footer-text,
.footer-links a,
.footer-links li {
    color: rgba(255, 247, 241, 0.84);
    line-height: 1.8;
}
.footer-links li,
.footer-links a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.footer-subitem {
    padding-left: 16px;
}
.footer-subitem a::before {
    content: '•';
    color: rgba(255, 247, 241, 0.64);
    margin-right: 8px;
}
.footer-icon {
    width: 18px;
    min-width: 18px;
    height: 18px;
    color: rgba(255, 247, 241, 0.96);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
}
.footer-icon svg {
    width: 18px;
    height: 18px;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 247, 241, 0.12);
}
.footer-bottom p {
    margin: 0;
    padding: 14px 0;
    color: rgba(255, 247, 241, 0.68);
}

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 70;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, #27c266 0%, var(--whatsapp) 100%);
    color: #fff;
    box-shadow: 0 20px 42px rgba(31, 170, 89, 0.32);
}
.floating-whatsapp-icon {
    width: 32px;
    height: 32px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
}
.floating-whatsapp-icon svg {
    width: 32px;
    height: 32px;
    display: block;
}
.floating-whatsapp-text {
    font-weight: 800;
}

@media (max-width: 1160px) {
    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1180px) {
    .hero-shell,
    .grid-2,
    .split-highlight,
    .cards.two,
    .cards.three,
    .contact-grid,
    .footer-grid,
    .profile-card,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .nav-wrap {
        min-height: 104px;
    }
    .brand-logo {
        height: 88px;
    }
    .brand-provider {
        font-size: 1.7rem;
    }

    .main-menu {
        position: absolute;
        top: 104px;
        left: 16px;
        right: 16px;
        background: rgba(255, 249, 244, 0.98);
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        min-height: auto;
        box-shadow: var(--shadow);
    }
    .main-menu.open {
        display: flex;
    }
    .menu-item,
    .has-submenu {
        width: 100%;
    }
    .main-menu a:not(.btn) {
        width: 100%;
        justify-content: flex-start;
        min-height: auto;
        padding: 12px 14px;
        border-radius: 14px;
    }
    .has-submenu > a::after {
        margin-left: auto;
    }
    .submenu {
        position: static;
        min-width: 0;
        margin-top: 6px;
        margin-left: 10px;
        padding: 6px;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(104, 22, 36, 0.05);
    }
    .submenu a:not(.btn) {
        white-space: normal;
        font-size: 0.8rem;
    }
    .menu-toggle {
        display: inline-flex;
    }
    .nav-cta {
        margin-left: 0;
        margin-top: 8px;
    }

    .hero-copy,
    .hero-panel,
    .soft-card,
    .card,
    .feature-card,
    .profile-card,
    .internal-hero-shell {
        padding: 24px;
    }
    .internal-hero-shell {
        min-height: 280px;
    }
    .footer-brand-block {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 24px), var(--container));
    }
    .brand-stack {
        gap: 12px;
    }
    .brand-logo {
        height: 72px;
    }
    .brand-copy {
        max-width: 190px;
    }
    .brand-provider {
        font-size: 1.45rem;
    }
    .brand-subtitle {
        font-size: 0.72rem;
    }
    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
        padding: 12px 16px;
    }
    .floating-whatsapp-text {
        display: none;
    }
}

