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

    :root {
        --bg:       #121212;
        --card:     #1a1a1a;
        --border:   #262626;
        --gold:     #c9a84c;
        --gold-dim: rgba(201,168,76,0.18);
        --gold-faint: rgba(201,168,76,0.06);
        --white:    #ffffff;
        --muted:    #a6a6a6;
        --dark-fg:  #111111;
    }

    html { scroll-behavior: smooth; overflow-x: hidden; }

    body {
        background: var(--bg);
        color: var(--white);
        font-family: 'Inter', sans-serif;
        -webkit-font-smoothing: antialiased;
        overflow-x: hidden;
    }

    h1,h2,h3,h4 { font-family: 'Playfair Display', serif; }

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

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
    }
    .reveal {
        opacity: 0;
        transform: translateY(36px);
        transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1);
    }
    .reveal.from-left  { transform: translateX(-50px); }
    .reveal.from-right { transform: translateX(50px); }
    @media (max-width: 768px) {
        .reveal.from-left, .reveal.from-right { transform: translateY(36px); }
    }
    .reveal.visible {
        opacity: 1;
        transform: translate(0,0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-delay-5 { transition-delay: 0.5s; }

    /* #region NAVBAR ========================================================= */
    #navbar {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 100;
        transition: background 0.5s, box-shadow 0.5s;
    }
    #navbar.scrolled {
        background: rgba(17,17,17,0.97);
        backdrop-filter: blur(12px);
        box-shadow: 0 2px 30px rgba(0,0,0,0.5);
    }
    .nav-gold-top {
        height: 2px;
        background: linear-gradient(to right, transparent, var(--gold), transparent);
    }
    .nav-gold-bottom {
        height: 1px;
        background: transparent;
        transition: background 0.5s;
    }
    #navbar.scrolled .nav-gold-bottom {
        background: linear-gradient(to right, transparent, rgba(201,168,76,0.3), transparent);
    }
    .nav-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 80px;
    }
    .nav-logo {
        display: flex;
        align-items: center;
        gap: 16px;
        flex-shrink: 0;
    }
    .nav-logo img { height: 48px; width: auto; object-fit: contain; }
    .nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
    .nav-logo-name {
        font-family: 'Playfair Display', serif;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--white);
        transition: color 0.3s;
    }
    .nav-logo:hover .nav-logo-name { color: var(--gold); }
    .nav-logo-sub {
        font-size: 9px;
        color: rgba(201,168,76,0.7);
        text-transform: uppercase;
        letter-spacing: 0.3em;
    }
    .nav-links {
        display: flex;
        align-items: center;
        gap: 4px;
    }
    .nav-link {
        position: relative;
        padding: 8px 16px;
    }
    .nav-link span {
        font-size: 11px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        color: rgba(255,255,255,0.6);
        transition: color 0.3s;
    }
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 16px;
        right: 16px;
        height: 1px;
        background: var(--gold);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s, opacity 0.3s;
        opacity: 0;
    }
    .nav-link:hover span { color: var(--white); }
    .nav-link:hover::after { transform: scaleX(1); opacity: 0.6; }
    .nav-link.active span { color: var(--gold); }
    .nav-link.active::after { transform: scaleX(1); opacity: 1; }
    .nav-divider { width: 1px; height: 24px; background: rgba(255,255,255,0.1); margin: 0 12px; }
    .nav-cta {
        position: relative;
        display: inline-flex;
        align-items: center;
        padding: 10px 24px;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        color: var(--dark-fg);
        background: var(--gold);
        overflow: hidden;
        transition: background 0.3s;
    }
    .nav-cta:hover { background: rgba(201,168,76,0.88); }
    .nav-hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255,255,255,0.1);
        background: transparent;
        -webkit-appearance: none;
        appearance: none;
        transition: border-color 0.3s;
    }
    .nav-hamburger:hover { border-color: var(--gold); }
    .nav-hamburger span {
        display: block;
        width: 18px;
        height: 1px;
        background: var(--white);
        transition: all 0.3s;
    }
    .nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }
    .mobile-menu {
      display: none;
      flex-direction: column;
      background: #0e0e0e;
      border-top: 1px solid rgba(201,168,76,0.2);
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
    }
    .mobile-menu.open { max-height: 500px; }
    .mobile-menu a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 16px;
        font-size: 11px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.25em;
        color: rgba(255,255,255,0.6);
        border-bottom: 1px solid rgba(255,255,255,0.05);
        transition: color 0.2s;
    }
    .mobile-menu a:hover, .mobile-menu a.active { color: var(--gold); }
    .mobile-menu-cta {
        display: block;
        margin: 24px auto;
        width: fit-content;
        padding: 12px 40px;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.25em;
        color: var(--dark-fg) !important;
        background: var(--gold);
    }

    @media (max-width: 921px) {
        .nav-links { display: none; }
        .nav-hamburger { display: flex; }
        .mobile-menu { display: flex; }
        .nav-logo-name { font-size: 12px; letter-spacing: 0.1em; }
        .nav-logo-sub { display: none; }
    }
    /* #endregion ====================================================== */

    /* #region HERO ========================================================= */
    #home {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding-top: 80px;
      overflow: hidden;
    }
    .hero-bg {
        position: absolute;
        inset: 0;
        z-index: 0;
        will-change: transform;
    }
    .hero-bg img {
        width: 100%;
        height: 110%;
        object-fit: cover;
        object-position: center;
    }
    .hero-overlay {
        position: absolute;
        inset: 0;
        background: rgba(18,18,18,0.72);
        z-index: 1;
    }
    .hero-overlay-side {
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, #121212 0%, rgba(18,18,18,0.82) 45%, transparent 100%);
        z-index: 2;
    }
    .hero-particles {
        position: absolute;
        inset: 0;
        z-index: 3;
        pointer-events: none;
        overflow: hidden;
    }
    .particle {
        position: absolute;
        border-radius: 50%;
        background: rgba(201,168,76,0.4);
        animation: float-particle linear infinite;
        opacity: 0;
    }
    @keyframes float-particle {
        0%   { opacity: 0; transform: translateY(0); }
        20%  { opacity: 0.7; }
        80%  { opacity: 0.5; }
        100% { opacity: 0; transform: translateY(-35px); }
    }
    .hero-left-line {
        position: absolute;
        left: 0;
        top: 0;
        width: 2px;
        height: 0;
        background: linear-gradient(to bottom, transparent, var(--gold), transparent);
        z-index: 10;
        animation: grow-line 1.6s ease 0.2s forwards;
    }
    @keyframes grow-line { to { height: 100%; } }

    .hero-content {
        position: relative;
        z-index: 10;
        max-width: 740px;
    }
    .hero-eyebrow {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 24px;
        opacity: 0;
        animation: fade-up 0.7s cubic-bezier(0.22,1,0.36,1) 0.2s forwards;
    }
    .hero-eyebrow-line {
        height: 1px;
        background: var(--gold);
        width: 0;
        animation: expand-line 0.8s ease 0.4s forwards;
    }
    @keyframes expand-line { to { width: 48px; } }
    .hero-eyebrow span {
        font-size: 12px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        color: var(--gold);
    }
    .hero-title {
        font-size: clamp(42px, 7vw, 80px);
        font-weight: 700;
        line-height: 1.1;
        color: var(--white);
        margin-bottom: 24px;
        opacity: 0;
        animation: fade-up 0.9s cubic-bezier(0.22,1,0.36,1) 0.35s forwards;
    }
    .hero-title em {
        color: var(--gold);
        font-style: italic;
        animation: pulse-opacity 3.5s ease-in-out infinite;
    }
    @keyframes pulse-opacity { 0%,100%{ opacity:.85 } 50%{ opacity:1 } }
    .hero-sub {
        font-size: clamp(15px, 2vw, 19px);
        color: var(--muted);
        line-height: 1.7;
        margin-bottom: 40px;
        max-width: 580px;
        opacity: 0;
        animation: fade-up 0.9s cubic-bezier(0.22,1,0.36,1) 0.5s forwards;
    }
    .hero-btns {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        opacity: 0;
        animation: fade-up 0.9s cubic-bezier(0.22,1,0.36,1) 0.65s forwards;
    }
    .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        height: 56px;
        padding: 0 32px;
        background: var(--gold);
        color: var(--dark-fg);
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        transition: transform 0.2s, background 0.3s;
        position: relative;
        overflow: hidden;
    }
    .btn-primary::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(255,255,255,0.15);
        transform: translateX(-100%);
        transition: transform 0.3s;
    }
    .btn-primary:hover { transform: scale(1.02); }
    .btn-primary:hover::after { transform: translateX(0); }
    .btn-outline {
        display: inline-flex;
        align-items: center;
        height: 56px;
        padding: 0 32px;
        border: 1px solid var(--gold);
        color: var(--gold);
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        position: relative;
        overflow: hidden;
        transition: transform 0.2s;
    }
    .btn-outline::before {
        content: '';
        position: absolute;
        inset: 0;
        background: var(--gold);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s;
        z-index: 0;
    }
    .btn-outline span { position: relative; z-index: 1; transition: color 0.3s; }
    .btn-outline:hover::before { transform: scaleX(1); }
    .btn-outline:hover span { color: var(--dark-fg); }
    .btn-outline:hover { transform: scale(1.02); }
    .chevron-right {
        display: inline-block;
        width: 16px;
        height: 16px;
        border-right: 2px solid currentColor;
        border-top: 2px solid currentColor;
        transform: rotate(45deg);
        transition: transform 0.2s;
    }
    .btn-primary:hover .chevron-right { transform: rotate(45deg) translateX(3px); }

    .hero-vert-text {
        position: absolute;
        right: 32px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 32px;
        z-index: 10;
        opacity: 0;
        animation: fade-in 1s ease 1.2s forwards;
    }
    .hero-vert-line {
        width: 1px;
        height: 0;
        background: var(--gold);
    }
    .hero-vert-line.top { animation: grow-vert 1s ease 1.2s forwards; }
    .hero-vert-line.bottom { animation: grow-vert 1s ease 1.4s forwards; }
    @keyframes grow-vert { to { height: 96px; } }
    .hero-vert-label {
        writing-mode: vertical-rl;
        font-size: 10px;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.35);
        white-space: nowrap;
    }
    .hero-scroll-indicator {
        position: absolute;
        bottom: 32px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        opacity: 0;
        animation: fade-in 0.8s ease 1.8s forwards;
    }
    .hero-scroll-label {
        font-size: 9px;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.3);
    }
    .scroll-chevron {
        width: 12px;
        height: 12px;
        border-right: 1.5px solid rgba(201,168,76,0.5);
        border-bottom: 1.5px solid rgba(201,168,76,0.5);
        transform: rotate(45deg);
        animation: bounce-down 1.5s ease-in-out infinite;
    }
    @keyframes bounce-down { 0%,100%{ transform:rotate(45deg) translateY(0) } 50%{ transform:rotate(45deg) translateY(6px) } }

    @keyframes fade-up {
        from { opacity:0; transform:translateY(30px); }
        to   { opacity:1; transform:translateY(0); }
    }
    @keyframes fade-in {
        from { opacity:0; }
        to   { opacity:1; }
    }

    @media (max-width: 768px) {
        .hero-vert-text { display: none; }
    }
    /* #endregion ====================================================== */

    /* #region HEADERS ========================================================= */
    .section-eyebrow {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 16px;
    }
    .section-eyebrow.center { justify-content: center; }
    .eyebrow-line {
        height: 1px;
        background: var(--gold);
        width: 32px;
    }
    .eyebrow-label {
        font-size: 11px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        color: var(--gold);
    }
    .section-title {
        font-size: clamp(32px, 5vw, 52px);
        font-weight: 700;
        color: var(--white);
        margin-bottom: 24px;
    }
    /* #endregion ====================================================== */

    /* #region SOBRE ========================================================= */
    #sobre {
        padding: 96px 0;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        overflow: hidden;
    }
    .sobre-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: center;
    }
    .sobre-visual {
        aspect-ratio: 1;
        background: var(--card);
        border: 1px solid var(--border);
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .sobre-visual-bg { position: absolute; inset: 0; background: var(--gold-faint); }
    .sobre-corner {
        position: absolute;
        width: 32px;
        height: 32px;
        border-color: var(--gold);
        border-style: solid;
        opacity: 0;
        transform: scale(0);
        transition: opacity 0.4s, transform 0.4s;
    }
    .sobre-corner.tl { top:0; left:0;  border-width: 2px 0 0 2px; }
    .sobre-corner.tr { top:0; right:0; border-width: 2px 2px 0 0; }
    .sobre-corner.bl { bottom:0; left:0;  border-width: 0 0 2px 2px; }
    .sobre-corner.br { bottom:0; right:0; border-width: 0 2px 2px 0; }
    .sobre-visual.visible .sobre-corner { opacity:1; transform:scale(1); }
    .sobre-visual.visible .sobre-corner.tl { transition-delay: 0.3s; }
    .sobre-visual.visible .sobre-corner.tr { transition-delay: 0.4s; }
    .sobre-visual.visible .sobre-corner.bl { transition-delay: 0.5s; }
    .sobre-visual.visible .sobre-corner.br { transition-delay: 0.6s; }
    .sobre-logo-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        padding: 16px;
        position: relative;
        z-index: 1;
    }
    .sobre-logo-wrap img {
        width: 66%;
        height: auto;
        object-fit: contain;
        opacity: 0.3;
        transition: opacity 0.5s;
    }
    .sobre-visual:hover .sobre-logo-wrap img { opacity: 0.5; }
    .sobre-logo-name {
        font-family: 'Playfair Display', serif;
        font-size: 20px;
        color: rgba(201,168,76,0.35);
        text-transform: uppercase;
        letter-spacing: 0.2em;
        margin-top: 16px;
        animation: pulse-opacity 4s ease-in-out infinite;
    }
    .sobre-shimmer {
        position: absolute;
        inset: 0;
        background: linear-gradient(105deg, transparent 35%, rgba(201,168,76,0.1) 50%, transparent 65%);
        transform: translateX(-120%);
        z-index: 2;
    }
    .sobre-visual.visible .sobre-shimmer {
        animation: shimmer-sweep 1.2s ease 0.8s forwards;
    }
    @keyframes shimmer-sweep {
        from { transform: translateX(-120%); }
        to   { transform: translateX(220%); }
    }
    .sobre-text {}
    .sobre-paragraphs { color: var(--muted); line-height: 1.8; }
    .sobre-paragraphs p + p { margin-top: 16px; }
    .sobre-stats {
        display: flex;
        align-items: center;
        gap: 32px;
        margin-top: 32px;
        padding-top: 32px;
        border-top: 1px solid var(--border);
    }
    .stat-divider { width: 1px; height: 48px; background: var(--border); }
    .stat { text-align: center; }
    .stat-number {
        display: block;
        font-family: 'Playfair Display', serif;
        font-size: 30px;
        color: var(--gold);
        margin-bottom: 4px;
        font-variant-numeric: tabular-nums;
    }
    .stat-label {
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        color: var(--muted);
    }
    @media (max-width: 900px) {
        .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
        .sobre-visual { max-width: 400px; margin: 0 auto; width: 100%; }
        .sobre-stats { gap: 16px; }
        .stat-number { font-size: 24px; }
        .stat-label { font-size: 9px; letter-spacing: 0.1em; }
    }
    @media (max-width: 480px) {
        .sobre-stats { flex-wrap: wrap; justify-content: center; gap: 24px; }
        .stat-divider { display: none; }
    }
    /* #endregion ====================================================== */

    /* #region AREAS ========================================================= */
    #areas {
        padding: 96px 0;
        background: var(--card);
        position: relative;
        overflow: hidden;
    }
    #areas::before, #areas::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(201,168,76,0.3), transparent);
    }
    #areas::before { top: 0; }
    #areas::after  { bottom: 0; }
    .areas-header { text-align: center; margin-bottom: 64px; }
    .areas-sub { color: var(--muted); max-width: 540px; margin: 0 auto; line-height: 1.7; }
    .areas-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    .area-card {
        position: relative;
        background: var(--bg);
        border: 1px solid var(--border);
        padding: 32px;
        overflow: hidden;
        transition: border-color 0.4s, transform 0.3s;
        cursor: default;
        transform-style: preserve-3d;
    }
    .area-card:hover { border-color: rgba(201,168,76,0.5); }
    .area-card-top-line {
        position: absolute;
        top: 0;
        left: 0;
        height: 2px;
        width: 0;
        background: var(--gold);
        transition: width 0s;
    }
    .area-card.visible .area-card-top-line { width: 30%; transition: width 0.8s ease; }
    .area-card-glow {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, var(--gold-faint) 0%, transparent 60%);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.5s;
    }
    .area-card:hover .area-card-glow { opacity: 1; }
    .area-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 56px;
        height: 56px;
        border: 1px solid var(--border);
        margin-bottom: 16px;
        position: relative;
        transition: border-color 0.3s;
    }
    .area-card:hover .area-icon { border-color: rgba(201,168,76,0.4); }
    .area-icon svg { color: var(--gold); }
    .area-icon-bg {
        position: absolute;
        inset: 0;
        background: rgba(201,168,76,0.08);
        transform: scale(0);
        transition: transform 0.4s;
    }
    .area-card.visible .area-icon-bg { transform: scale(1); }
    .area-title {
        font-family: 'Playfair Display', serif;
        font-size: 18px;
        color: var(--white);
        margin-bottom: 16px;
        transition: color 0.3s;
    }
    .area-card:hover .area-title { color: var(--gold); }
    .area-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .area-list li {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        font-size: 13px;
        color: var(--muted);
    }
    .area-bullet { color: var(--gold); font-weight: 700; margin-top: 1px; flex-shrink: 0; }
    @media (max-width: 900px) { .areas-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 600px) { .areas-grid { grid-template-columns: 1fr; } }
    /* #endregion ====================================================== */

    /* #region DEPOIMENTOS ========================================================= */
    #depoimentos {
        padding: 96px 0;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        overflow: hidden;
    }
    .dep-header { text-align: center; margin-bottom: 64px; }
    .dep-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
    .dep-card {
        background: var(--card);
        border: 1px solid var(--border);
        padding: 32px;
        position: relative;
        overflow: hidden;
        transition: transform 0.3s, border-color 0.3s;
    }
    .dep-card:hover { transform: translateY(-6px); }
    .dep-card-top-line {
        position: absolute;
        top: 0;
        left: 0;
        height: 2px;
        background: var(--gold);
        width: 0;
        transition: width 0.4s;
    }
    .dep-card:hover .dep-card-top-line { width: 100%; }
    .dep-quote {
        position: absolute;
        top: 16px;
        left: 24px;
        font-family: 'Playfair Display', serif;
        font-size: 72px;
        color: rgba(201,168,76,0.15);
        line-height: 1;
        user-select: none;
        animation: pulse-quote 3s ease-in-out infinite;
    }
    @keyframes pulse-quote { 0%,100%{ opacity:.15 } 50%{ opacity:.3 } }
    .dep-text {
        font-style: italic;
        color: var(--muted);
        line-height: 1.8;
        margin-top: 16px;
        margin-bottom: 24px;
        position: relative;
        z-index: 1;
    }
    .dep-name { color: var(--white); font-weight: 500; }
    .dep-role {
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        color: var(--gold);
    }
    .dep-shimmer {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(201,168,76,0.05), transparent 60%);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.5s;
    }
    .dep-card:hover .dep-shimmer { opacity: 1; }
    @media (max-width: 768px) { .dep-grid { grid-template-columns: 1fr; } }
    /* #endregion ====================================================== */

    /* #region CONTACT ========================================================= */
    #contato { padding: 96px 0; }
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
    .contact-info-list { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
    .contact-info-item { display: flex; align-items: flex-start; gap: 16px; }
    .contact-info-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--card);
        border: 1px solid var(--border);
    }
    .contact-info-icon svg { color: var(--gold); }
    .contact-info-title { color: var(--white); font-weight: 500; margin-bottom: 4px; }
    .contact-info-value { color: var(--muted); font-size: 14px; }
    .whatsapp-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-top: 40px;
        height: 56px;
        padding: 0 32px;
        background: #25D366;
        color: var(--white);
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        transition: background 0.3s;
        width: 100%;
        justify-content: center;
    }
    @media (min-width: 500px) { .whatsapp-btn { width: auto; } }
    .whatsapp-btn:hover { background: #128C7E; }
    .contact-form-box {
        background: var(--card);
        border: 1px solid var(--border);
        padding: 40px;
    }
    .contact-form-title {
        font-family: 'Playfair Display', serif;
        font-size: 24px;
        color: var(--white);
        margin-bottom: 24px;
    }
    .form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
    .form-label { font-size: 13px; font-weight: 500; color: var(--white); }
    .form-input, .form-textarea {
        background: var(--bg);
        border: 1px solid var(--border);
        color: var(--white);
        padding: 0 16px;
        height: 48px;
        font-size: 14px;
        font-family: 'Inter', sans-serif;
        outline: none;
        width: 100%;
        transition: border-color 0.3s;
    }
    .form-input:focus, .form-textarea:focus { border-color: var(--gold); }
    .form-textarea { height: 150px; padding: 14px 16px; resize: none; }
    .form-submit {
        width: 100%;
        height: 56px;
        background: var(--gold);
        color: var(--dark-fg);
        border: none;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        cursor: pointer;
        transition: background 0.3s, color 0.3s;
        font-family: 'Inter', sans-serif;
    }
    .form-submit:hover { background: var(--white); }
    .form-success {
        display: none;
        text-align: center;
        padding: 24px;
        color: var(--gold);
        font-family: 'Playfair Display', serif;
        font-size: 18px;
    }
    @media (max-width: 768px) {
        .contact-grid { grid-template-columns: 1fr; gap: 40px; }
        .form-row { grid-template-columns: 1fr; }
        .contact-form-box { padding: 24px; }
    }

    /* #endregion ====================================================== */

    /* #region INSTAGRAM ========================================================= */
    #instagram {
        padding: 96px 0;
        border-top: 1px solid var(--border);
        background: linear-gradient(to right, transparent, rgba(201,168,76,0.3), transparent);
    }
    .insta-header {
        text-align: center;
        margin-bottom: 56px;
    }
    .insta-handle {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: var(--gold);
        font-size: 13px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        margin-bottom: 16px;
    }
    .insta-handle svg { width: 18px; height: 18px; fill: var(--gold); }
    .insta-title {
        font-family: 'Playfair Display', serif;
        font-size: clamp(28px, 4vw, 42px);
        color: var(--white);
        margin-bottom: 14px;
    }
    .insta-sub {
        color: var(--muted);
        font-size: 15px;
        max-width: 480px;
        margin: 0 auto;
        line-height: 1.6;
    }
    .insta-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);/*onde eu determino a quantidade por linha*/
        gap: 16px;
        margin-bottom: 48px;
    }
    .insta-card {
        display: block;
        position: relative;
        border-radius: 4px;
        overflow: hidden;
        cursor: pointer;
        background: #fff;
        border: 1px solid var(--border);
        text-decoration: none;
    }
    .insta-embed-wrapper {
        position: relative;
        pointer-events: none;
        overflow: hidden;
        display: flex;
        justify-content: center;
        /* Zoom shrinks the full embed (header + image + caption) to 62% */
        zoom: 0.62;
      /* Firefox fallback */
        -moz-transform: scale(0.62);
        -moz-transform-origin: top center;
    }
    .insta-embed-wrapper blockquote.instagram-media {
        margin: 0 !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        flex-shrink: 0;
    }
    .insta-card-tag {
        position: absolute;
        bottom: 12px;
        left: 12px;
        font-size: 10px;
        color: rgba(201,168,76,0.75);
        letter-spacing: 0.1em;
        z-index: 1;
    }
    .insta-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.7);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .insta-card:hover .insta-overlay { opacity: 1; }
    .insta-metrics {
        display: flex;
        gap: 20px;
    }
    .insta-metric {
        display: flex;
        align-items: center;
        gap: 6px;
        color: var(--white);
        font-size: 13px;
        font-weight: 600;
    }
    .insta-metric svg { width: 16px; height: 16px; fill: var(--white); }
    .insta-caption {
        font-size: 11px;
        color: rgba(255,255,255,0.65);
        padding: 0 20px;
        text-align: center;
        max-width: 180px;
        line-height: 1.4;
    }
    .insta-cta-wrap {
        display: flex;
        justify-content: center;
    }
    .insta-cta {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        border: 1px solid var(--gold);
        color: var(--gold);
        padding: 14px 36px;
        font-size: 12px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        border-radius: 2px;
        transition: background 0.3s, color 0.3s;
        text-decoration: none;
    }
    .insta-cta:hover {
        background: var(--gold);
        color: var(--dark-fg);
    }
    .insta-cta svg { width: 16px; height: 16px; }
    @media (max-width: 768px) {
        .insta-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
        .insta-card-quote { font-size: 12px; }
    }
    @media (max-width: 480px) {
        .insta-grid { grid-template-columns: repeat(1, 1fr); gap: 8px; }
    }
    /* #endregion ====================================================== */

    /* #region MAPA ========================================================= */
    #localizacao {
        padding: 96px 0 0;
        border-top: 1px solid var(--border);
        background-color: #1A1A1A;
    }
    .mapa-header {
        text-align: center;
        margin-bottom: 48px;
    }
    .mapa-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 12px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--gold);
        margin-bottom: 16px;
    }
    .mapa-eyebrow::before {
        content: '';
        display: block;
        width: 32px;
        height: 1px;
        background: var(--gold);
    }
    .mapa-title {
        font-family: 'Playfair Display', serif;
        font-size: clamp(28px, 4vw, 42px);
        color: var(--white);
        margin-bottom: 12px;
    }
    .mapa-sub {
        color: var(--muted);
        font-size: 15px;
    }
    .mapa-grid {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 0;
        border-top: 1px solid var(--border);
    }
    .mapa-info {
        padding: 48px 40px;
        border-right: 1px solid var(--border);
        display: flex;
        flex-direction: column;
        gap: 32px;
        background: var(--card);
    }
    .mapa-info-item {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
    .mapa-info-label {
        font-size: 10px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--gold);
    }
    .mapa-info-value {
        font-size: 15px;
        color: var(--white);
        line-height: 1.6;
    }
    .mapa-info-value a {
        color: var(--white);
        text-decoration: none;
        transition: color 0.2s;
    }
    .mapa-info-value a:hover { color: var(--gold); }
    .mapa-embed {
        position: relative;
        min-height: 420px;
    }
    .mapa-embed iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: none;
        filter: grayscale(30%) contrast(1.05);
    }
    .mapa-cta {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--gold);
        color: var(--dark-fg);
        padding: 12px 24px;
        font-size: 11px;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        font-weight: 700;
        border-radius: 2px;
        text-decoration: none;
        transition: opacity 0.2s;
        margin-top: 8px;
        align-self: flex-start;
    }
    .mapa-cta:hover { opacity: 0.85; }
    @media (max-width: 768px) {
        .mapa-grid { grid-template-columns: 1fr; }
        .mapa-info { border-right: none; border-bottom: 1px solid var(--border); padding: 32px 24px; }
        .mapa-embed { min-height: 300px; }
    }
    /* #endregion ====================================================== */

    /* #region FOOTER ========================================================= */
    footer {
        background: var(--card);
        border-top: 1px solid var(--border);
        padding: 48px 0;
    }
    .footer-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    @media (min-width: 768px) {
        .footer-inner {
            flex-direction: row;
            justify-content: space-between;
        }
    }
    .footer-logo { display: flex; align-items: center; gap: 12px; }
    .footer-logo img { height: 40px; width: auto; object-fit: contain; }
    .footer-logo-name {
        font-family: 'Playfair Display', serif;
        font-size: 15px;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--white);
    }
    .footer-logo-sub {
        font-size: 9px;
        color: var(--muted);
        text-transform: uppercase;
        letter-spacing: 0.2em;
    }
    .footer-copy { font-size: 13px; color: var(--muted); text-align: center; line-height: 1.7; }
    @media (min-width: 768px) { .footer-copy { text-align: right; } }
    /* #endregion ====================================================== */

    /* #region ÁREAS ========================================================= */
        svg { display: inline-block; vertical-align: middle; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
    /* #endregion ÁREAS ====================================================== */