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

  :root {
    --bordo: #7a1a2e;
    --bordo-dark: #55111f;
    --bordo-light: #a3223d;
    --gold: #c9953a;
    --gold-light: #e8b85a;
    --gold-pale: #f5e6c8;
    --cream: #fdf7ee;
    --white: #ffffff;
    --text-dark: #1a0a0e;
    --text-mid: #5a3040;
    --text-light: #9a7080;
    --radius: 16px;
    --radius-sm: 8px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  /* ─── HEADER: BARRA SUPERIOR ─── */
  .topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: 118px;
    background: var(--bordo);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3vw;
  }
  .topbar-side {
    display: flex;
    align-items: center;
    gap: 1.2rem;
  }
  .topbar-search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 7px 16px;
    cursor: pointer;
    transition: background var(--transition);
  }
  .topbar-search:hover { background: rgba(255,255,255,0.2); }
  .topbar-search svg { width: 16px; height: 16px; stroke: white; fill: none; stroke-width: 2; }
  .topbar-search input {
    background: none; border: none; outline: none;
    color: white; font-size: 0.85rem; width: 130px;
    font-family: 'DM Sans', sans-serif;
  }
  .topbar-search input::placeholder { color: rgba(255,255,255,0.6); }

  .topbar-logo {
    position: absolute;
    left: 50%; transform: translateX(-50%);
    display: flex; align-items: center; text-decoration: none;
  }
  .topbar-logo img {
    height: 110px;
    width: auto;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
  }

  .topbar-icons {
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  .topbar-icon {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    text-decoration: none;
    transition: background var(--transition);
  }
  .topbar-icon:hover { background: rgba(255,255,255,0.25); }
  .topbar-icon svg { width: 18px; height: 18px; stroke: white; fill: none; stroke-width: 1.8; }
  .topbar-badge {
    position: absolute;
    top: -4px; right: -4px;
    width: 18px; height: 18px;
    background: var(--gold);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }

  /* ─── HEADER: BARRA DE MENU ─── */
  .navbar {
    position: fixed;
    top: 118px; left: 0; right: 0;
    z-index: 999;
    height: 52px;
    background: var(--gold-pale);
    border-bottom: 2px solid rgba(201,149,58,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    transition: box-shadow var(--transition);
  }
  .navbar.scrolled { box-shadow: 0 4px 20px rgba(122,26,46,0.12); }
  .nav-links {
    display: flex;
    list-style: none;
    gap: 0;
    flex-wrap: nowrap;
    overflow: hidden;
  }
  .nav-links a {
    display: block;
    padding: 0 0.85rem;
    line-height: 52px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--bordo);
    white-space: nowrap;
    transition: color var(--transition), background var(--transition);
    position: relative;
  }
  .nav-links a:hover, .nav-links a.active {
    color: var(--bordo-dark);
    background: rgba(201,149,58,0.15);
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; right: 50%;
    height: 3px;
    background: var(--bordo);
    border-radius: 3px 3px 0 0;
    transition: left var(--transition), right var(--transition);
  }
  .nav-links a:hover::after, .nav-links a.active::after { left: 20%; right: 20%; }
  .nav-links a.nav-contato {
    background: var(--bordo);
    color: white;
    margin: 10px 0.5rem;
    padding: 0 1rem;
    line-height: 32px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: background var(--transition), transform var(--transition);
  }
  .nav-links a.nav-contato:hover {
    background: var(--bordo-dark);
    color: white;
    transform: scale(1.04);
  }
  .nav-links a.nav-contato::after { display: none; }
  .nav-links a.nav-wa {
    background: #25d366;
    color: white;
    border-radius: 0;
    display: flex; align-items: center; gap: 6px;
  }
  .nav-links a.nav-wa::after { display: none; }
  .nav-links a.nav-wa:hover { background: #1db954; color: white; }
  .nav-links a.nav-wa svg { width: 16px; height: 16px; fill: white; }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    position: absolute;
    right: 3vw;
  }
  .hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
  }
  .mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 998;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    padding-top: 80px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--bordo);
    text-decoration: none;
  }

  /* ─── HERO DIAGONAL ─── */
  #hero {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    padding-top: 170px; /* topbar + navbar */
    position: relative;
    overflow: hidden;
  }

  .hero-split {
    display: flex;
    width: 100%;
    min-height: calc(100vh - 128px);
    position: relative;
    align-items: stretch;
  }

  /* Left panel */
  .hero-left {
    flex: 0 0 48%;
    background: var(--bordo);
    display: flex;
    align-items: center;
    padding: 4rem 4rem 4rem 5vw;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
    z-index: 2;
  }
  .hero-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 20% 30%, rgba(255,255,255,0.04) 0%, transparent 50%),
      repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(255,255,255,0.015) 30px, rgba(255,255,255,0.015) 31px);
    pointer-events: none;
  }

  /* Right panel */
  .hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    margin-left: -6%;
    z-index: 1;
    min-height: 500px;
  }
  .hero-right-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .hero-right-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.18;
    position: absolute;
    inset: 0;
  }
  .hero-right-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    padding: 3rem 3rem 3rem 8%;
    text-align: center;
  }
  .hero-right-logo {
    width: 260px;
    filter: drop-shadow(0 8px 32px rgba(122,26,46,0.18));
    animation: fadeInRight 1s 0.3s ease both;
    margin-bottom: 2rem;
  }
  .hero-right-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--bordo-dark);
    animation: fadeInRight 1s 0.5s ease both;
    margin-bottom: 0.5rem;
  }
  .hero-right-sub {
    color: var(--text-light);
    font-size: 0.95rem;
    animation: fadeInRight 1s 0.6s ease both;
  }

  /* Left content */
  .hero-content { position: relative; z-index: 2; width: 100%; }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--gold-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease both;
  }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    line-height: 1.12;
    color: white;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s 0.1s ease both;
  }
  .hero-title em {
    font-style: italic;
    color: var(--gold-light);
  }

  .hero-promo {
    display: inline-block;
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255,255,255,0.75);
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.8s 0.15s ease both;
  }
  .hero-discount {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--gold-light);
    font-weight: 700;
    display: block;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s 0.2s ease both;
  }

  .hero-desc {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.75);
    max-width: 380px;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s 0.2s ease both;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s 0.3s ease both;
  }

  /* Recent purchase popup */
  .recent-buy {
    position: absolute;
    bottom: 2rem; left: 2rem;
    background: white;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    max-width: 280px;
    z-index: 10;
    animation: slideUp 0.6s 1.5s ease both;
  }
  .recent-buy-icon {
    width: 40px; height: 40px;
    background: var(--gold-pale);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 1.4rem;
  }
  .recent-buy-text p:first-child {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--bordo-dark);
  }
  .recent-buy-text p:last-child {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 2px;
  }
  .recent-buy-close {
    position: absolute; top: 8px; right: 10px;
    background: none; border: none;
    font-size: 1rem; cursor: pointer;
    color: var(--text-light);
    line-height: 1;
  }

  @keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* Wave bottom of hero */
  .hero-wave {
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    z-index: 5;
    line-height: 0;
  }
  .hero-wave svg { display: block; width: 100%; }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--white);
    padding: 13px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background var(--transition), transform 0.15s;
    border: none;
    cursor: pointer;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    border: 1.5px solid rgba(255,255,255,0.4);
    transition: all var(--transition);
  }
  .btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: white; }

  .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: var(--white);
    padding: 13px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: background var(--transition), transform 0.15s;
  }
  .btn-whatsapp:hover { background: #1db954; transform: translateY(-2px); }
  .btn-whatsapp svg { width: 18px; height: 18px; fill: white; }

  .stats-strip {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    animation: fadeInUp 0.8s 0.4s ease both;
  }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold-light);
    font-weight: 700;
    line-height: 1;
  }
  .stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 4px;
  }

  /* ─── SECTION BASE ─── */
  section {
    padding: 100px 5vw;
  }
  .section-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .section-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--bordo-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  .section-sub {
    color: var(--text-mid);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 560px;
  }

  /* ─── SOBRE ─── */
  #sobre {
    background: var(--white);
  }
  .sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  .sobre-visual {
    position: relative;
  }
  .sobre-img-bg {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 24px;
    background:
      radial-gradient(ellipse at 40% 40%, rgba(201, 149, 58, 0.15) 0%, transparent 60%),
      radial-gradient(ellipse at 70% 70%, rgba(122, 26, 46, 0.12) 0%, transparent 50%),
      linear-gradient(135deg, var(--gold-pale) 0%, #f0e0e6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .sobre-img-bg img {
    width: 70%;
    filter: drop-shadow(0 12px 40px rgba(122,26,46,0.25));
  }
  .sobre-accent {
    position: absolute;
    width: 120px; height: 120px;
    background: var(--gold-pale);
    border: 3px solid var(--gold-light);
    border-radius: 20px;
    bottom: -30px; right: -30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 16px;
  }
  .sobre-accent span:first-child {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--bordo);
    font-weight: 700;
    line-height: 1;
  }
  .sobre-accent span:last-child {
    font-size: 0.7rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
  }
  /* Números do Quem Somos */
  .sobre-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin: 1.5rem 0 2rem;
  }
  .sobre-stat {
    background: var(--bordo);
    border-radius: var(--radius-sm);
    padding: 1rem 0.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .sobre-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
  }
  .sobre-stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    line-height: 1.3;
  }

  .sobre-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2.5rem;
  }
  .feature-item {
    background: var(--cream);
    border-radius: var(--radius-sm);
    padding: 1.2rem;
    border-left: 3px solid var(--gold);
  }
  .feature-item h4 {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--bordo-dark);
    margin-bottom: 4px;
  }
  .feature-item p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.5;
  }

  /* ─── TEMAS ─── */
  #temas { background: var(--cream); }
  .temas-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .tag {
    background: var(--white);
    color: var(--bordo);
    border: 1.5px solid rgba(122, 26, 46, 0.15);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 400;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
  }
  .tag:hover {
    background: var(--bordo);
    color: var(--white);
    border-color: var(--bordo);
    transform: translateY(-2px);
  }

  /* ─── FOTOS / GALERIA ─── */
  #fotos { background: var(--bordo-dark); }
  

  .gallery-placeholder {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
  }
  .gallery-item {
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    background:
      radial-gradient(ellipse at center, rgba(201, 149, 58, 0.3) 0%, rgba(122, 26, 46, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: transform var(--transition);
  }
  .gallery-item:hover { transform: scale(1.03); }
  .gallery-item:nth-child(1) { grid-column: span 2; aspect-ratio: 2/1; }
  .gallery-item-label {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    text-align: center;
    padding: 1rem;
  }
  .gallery-item svg { width: 32px; height: 32px; opacity: 0.4; fill: white; }

  /* ─── HERO SLIDER ─── */
  .hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
  }
  .hero-slide.active { opacity: 1; }
  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  /* Setas do slider */
  .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(6px);
    border: none;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    color: white;
  }
  .slider-arrow:hover {
    background: rgba(255,255,255,0.38);
    transform: translateY(-50%) scale(1.1);
  }
  .slider-arrow svg { width: 22px; height: 22px; }
  .slider-arrow-left  { left: 0.75rem; }
  .slider-arrow-right { right: 0.75rem; }

  .hero-slider-dots {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 10;
    display: flex;
    gap: 8px;
  }
  .dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: 2px solid rgba(255,255,255,0.8);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
  }
  .dot.active {
    background: white;
    transform: scale(1.3);
  }

  /* ─── GALERIA DE FOTOS (card style) ─── */
  #fotos { background: var(--cream); }

  .fotos-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin-bottom: 2.5rem;
  }
  .filter-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: 1.5px solid rgba(122,26,46,0.18);
    background: var(--white);
    color: var(--bordo);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
  }
  .filter-btn:hover, .filter-btn.active {
    background: var(--bordo);
    color: white;
    border-color: var(--bordo);
    transform: translateY(-1px);
  }
  .filter-btn.active {
    background: linear-gradient(135deg, var(--bordo-light), var(--bordo-dark));
    box-shadow: 0 4px 16px rgba(122,26,46,0.25);
  }

  .fotos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
  }
  .foto-card {
    width: 250px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid rgba(201,149,58,0.12);
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
  }
  .foto-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(122,26,46,0.12);
  }
  .foto-card-img {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #f9f1e4 0%, #f5e8ec 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .foto-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease;
  }
  .foto-card:hover .foto-card-img img { transform: scale(1.06); }
  .foto-card-img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(122,26,46,0.2);
    font-size: 0.72rem;
  }
  .foto-card-img-placeholder svg { width: 24px; height: 24px; opacity: 0.2; }

  .foto-card-body {
    padding: 1rem 1.2rem 1.3rem;
  }
  .foto-tag {
    display: inline-block;
    background: rgba(201,149,58,0.12);
    color: var(--gold);
    border: 1px solid rgba(201,149,58,0.3);
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
  }
  .foto-card-body h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--bordo-dark);
    margin-bottom: 4px;
    line-height: 1.3;
  }
  .foto-card-body p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.5;
  }
  #orcamento {
    background: linear-gradient(135deg, var(--bordo) 0%, var(--bordo-dark) 100%);
    position: relative;
    overflow: hidden;
  }
  #orcamento::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(201, 149, 58, 0.08);
    pointer-events: none;
  }
  .orcamento-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  .orcamento-text .section-tag { color: var(--gold-light); }
  .orcamento-text .section-title { color: var(--white); }
  .orcamento-text .section-sub { color: rgba(255,255,255,0.7); }

  .orcamento-form {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 1rem;
  }
  .form-group.full { grid-column: span 2; }
  .form-group label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    letter-spacing: 0.04em;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: white;
    outline: none;
    transition: border-color var(--transition);
    width: 100%;
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--gold-light); }
  .form-group select option { background: var(--bordo-dark); color: white; }
  .form-group textarea { resize: vertical; min-height: 100px; }

  /* ─── INSTAGRAM ─── */
  #instagram { background: var(--white); }
  .insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 3rem;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
  }
  .insta-item {
    aspect-ratio: 1;
    background: var(--cream);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition);
    border: 1px solid rgba(201, 149, 58, 0.15);
  }
  .insta-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 12px;
    transition: transform 0.4s ease;
  }
  .insta-item:hover img { transform: scale(1.08); }
  .insta-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(122,26,46,0);
    transition: background 0.3s ease;
    border-radius: 12px;
    pointer-events: none;
  }
  .insta-item:hover::after { background: rgba(122,26,46,0.35); }
  .insta-item .insta-hover-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
  }
  .insta-item:hover .insta-hover-icon { opacity: 1; }
  .insta-hover-icon svg { width: 36px; height: 36px; fill: white; }
  .insta-icon { width: 32px; height: 32px; opacity: 0.3; }
  .insta-follow {
    margin-top: 2rem;
    text-align: center;
  }

  /* ─── CURSO ─── */
  #curso { background: var(--cream); }
  .curso-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  .curso-foto img { width: 100%; border-radius: 16px; }
  .curso-info { display: flex; flex-direction: column; gap: 1.25rem; }
  .curso-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: white;
    border-radius: 12px;
    padding: 1rem 1.2rem;
    box-shadow: 0 2px 12px rgba(122,26,46,0.07);
  }
  .curso-icon { font-size: 1.6rem; flex-shrink: 0; }
  .curso-item strong { display: block; color: var(--bordo-dark); font-size: 0.95rem; margin-bottom: 0.25rem; }
  .curso-item p { margin: 0; font-size: 0.85rem; color: #666; line-height: 1.5; }

  /* Novo layout curso */
  .curso-tema-badge {
    display: inline-block;
    background: var(--bordo);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.45rem 1.1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
  }
  .curso-bloco {
    background: white;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    box-shadow: 0 2px 12px rgba(122,26,46,0.07);
  }
  .curso-bloco-titulo {
    font-weight: 700;
    color: var(--bordo-dark);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
  .curso-lista {
    margin: 0;
    padding-left: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .curso-lista li {
    font-size: 0.88rem;
    color: #444;
    line-height: 1.55;
  }
  @media (max-width: 768px) {
    .curso-layout { grid-template-columns: 1fr; }
  }

  /* ─── SOBREMESAS ─── */
  #sobremesas { background: var(--cream); }
  .sobremesas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .sobremesa-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(122,26,46,0.08);
    transition: transform var(--transition), box-shadow var(--transition);
  }
  .sobremesa-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(122,26,46,0.15);
  }
  .sobremesa-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
  }
  .sobremesa-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
  }
  .sobremesa-card:hover .sobremesa-img img { transform: scale(1.05); }
  .sobremesa-body {
    padding: 1.2rem 1.4rem 1.5rem;
  }
  .sobremesa-body h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--bordo-dark);
    margin: 0.4rem 0 0.4rem;
  }
  .sobremesa-body p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
  }
  @media (max-width: 768px) {
    .sobremesas-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 1024px) and (min-width: 769px) {
    .sobremesas-grid { grid-template-columns: repeat(2, 1fr); }
  }

  /* ─── CONTATO ─── */
  #contato { background: var(--cream); }
  .contato-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .contato-info { }
  .info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(201, 149, 58, 0.12);
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
  }
  .info-icon {
    width: 48px; height: 48px;
    background: var(--gold-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .info-icon svg { width: 22px; height: 22px; fill: var(--gold); }
  .info-card h4 {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
  }
  .info-card p, .info-card a {
    font-size: 1rem;
    color: var(--bordo-dark);
    font-weight: 500;
    text-decoration: none;
  }
  .info-card a:hover { color: var(--bordo-light); }

  .contato-form-wrap {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(201, 149, 58, 0.15);
  }
  .contato-form-wrap .form-group label { color: var(--text-mid); }
  .contato-form-wrap input,
  .contato-form-wrap select,
  .contato-form-wrap textarea {
    background: var(--cream);
    border: 1.5px solid rgba(201, 149, 58, 0.2);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
    outline: none;
    transition: border-color var(--transition);
    width: 100%;
  }
  .contato-form-wrap input::placeholder,
  .contato-form-wrap textarea::placeholder { color: var(--text-light); }
  .contato-form-wrap input:focus,
  .contato-form-wrap select:focus,
  .contato-form-wrap textarea:focus { border-color: var(--gold); }
  .contato-form-wrap .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .contato-form-wrap .form-group.full { grid-column: 1 / -1; }
  .social-row {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  .social-btn {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform var(--transition), opacity var(--transition);
  }
  .social-btn:hover { transform: translateY(-3px); opacity: 0.85; }
  .social-btn svg { width: 22px; height: 22px; fill: white; }
  .fb-btn { background: #1877f2; }
  .ig-btn { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }
  .wa-btn { background: #25d366; }
  .pt-btn { background: #e60023; }
  .yt-btn { background: #ff0000; }

  /* ─── FOOTER ─── */
  footer {
    background: var(--bordo-dark);
    color: rgba(255,255,255,0.6);
    text-align: center;
    padding: 2.5rem 5vw;
    font-size: 0.85rem;
  }
  footer a { color: var(--gold-light); text-decoration: none; }
  footer .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  footer img { height: 44px; filter: brightness(10); opacity: 0.7; }

  /* ─── WHATSAPP FLOAT ─── */
  .wa-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
    width: 60px; height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    text-decoration: none;
    animation: pulse 3s ease-in-out infinite;
  }
  .wa-float svg { width: 28px; height: 28px; fill: white; }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
  }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
    50% { box-shadow: 0 4px 32px rgba(37,211,102,0.8); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    .topbar-search { display: none; }
    .nav-links { display: none; }
    .hamburger { display: flex; }

    /* Hero mobile — sem padding lateral */
    #hero {
      padding-left: 0 !important;
      padding-right: 0 !important;
      padding-bottom: 0 !important;
      padding-top: 90px;
      min-height: unset;
    }
    .hero-split { flex-direction: column; width: 100%; min-height: unset; }
    .hero-left {
      flex: none;
      width: 100%;
      clip-path: none;
      padding: 2rem 1.25rem 2.5rem;
      min-height: unset;
      border-radius: 0;
    }
    .hero-left h1 { font-size: clamp(1.5rem, 6.5vw, 2.2rem); }
    .hero-left .hero-sub { font-size: 0.88rem; }
    .hero-right {
      display: block;
      width: 100vw;
      margin-left: 0;
      height: 260px;
      min-height: unset;
      overflow: hidden;
      position: relative;
      flex-shrink: 0;
    }
    .hero-right-bg {
      position: relative;
      width: 100%;
      height: 260px;
    }
    .hero-slider { position: absolute; inset: 0; }
    .hero-slide { position: absolute; inset: 0; }
    .hero-slide img { width: 100%; height: 260px; object-fit: cover; object-position: center; }
    .hero-slider-dots { bottom: 0.5rem; right: 50%; transform: translateX(50%); }
    .hero-badge { font-size: 0.7rem; padding: 0.25rem 0.75rem; }

    /* Galeria 2 colunas no mobile */
    .fotos-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 0.75rem;
    }
    .foto-card { width: 100%; }
    .foto-card-img { width: 100%; height: 160px; }

    /* Corporativos 2 colunas */
    .fotos-grid.reveal { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }

    /* Seções gerais */
    .sobre-grid { grid-template-columns: 1fr; }
    .orcamento-inner { grid-template-columns: 1fr; }
    .contato-grid { grid-template-columns: 1fr; }
    .insta-grid { grid-template-columns: repeat(3, 1fr); gap: 0.4rem; }
    .gallery-item:nth-child(1) { grid-column: span 1; aspect-ratio: 1; }
    .form-row { grid-template-columns: 1fr; }
    .contato-form-wrap .form-row { grid-template-columns: 1fr; }
    .sobre-features { grid-template-columns: 1fr; }
    .sobre-stats { grid-template-columns: repeat(2, 1fr); }
    .sobre-stat-num { font-size: 1.15rem; }
    .temas-header { flex-direction: column; align-items: flex-start; }
    .recent-buy { left: 1rem; right: 1rem; max-width: none; }

    /* Filtros galeria */
    .fotos-filter { gap: 0.4rem; }
    .filter-btn { font-size: 0.72rem; padding: 0.3rem 0.7rem; }

    /* Seção títulos */
    .section-title { font-size: clamp(1.5rem, 6vw, 2.2rem); }
    .section-sub { font-size: 0.88rem; }

    /* Footer mobile */
    footer { text-align: center; padding: 2rem 1rem 1.5rem; }
    .footer-top { flex-direction: column; gap: 1rem; }

    /* Botões hero */
    .hero-btns { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
    .btn-whatsapp, .btn-primary { font-size: 0.88rem; padding: 0.65rem 1.4rem; }

    /* Orçamento */
    .orcamento-info { padding: 1.5rem 1rem; }

    /* Tags grid */
    .tags-grid { gap: 0.4rem; }
    .tag { font-size: 0.78rem; padding: 0.3rem 0.75rem; }

    /* Sobremesas */
    .sobremesas-grid { grid-template-columns: 1fr; }

    /* Curso */
    .curso-layout { grid-template-columns: 1fr; }
    .curso-info { gap: 0.85rem; }
    .curso-bloco { padding: 0.85rem 1rem; }

    /* Seções com padding menor no mobile */
    section { padding: 50px 4vw; }
    #hero { padding: 0; }

    /* Topbar compacta no mobile */
    .topbar { height: 68px; padding: 0 1rem; }
    .topbar-logo img { height: 54px; }
    .topbar-right { gap: 0.5rem; }
    .topbar-icon { width: 32px; height: 32px; }

    /* Navbar escondida no mobile (hamburger já está na topbar) */
    .navbar { display: none; }

    /* Hero ajustado para topbar menor */
    #hero { padding-top: 68px; }
  }

  @media (max-width: 480px) {
    #hero { padding-top: 68px; }
    .hero-right { height: 200px; }
    .hero-right-bg { height: 200px; }
    .hero-slide img { height: 200px; }
    .fotos-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .foto-card-img { height: 130px; }
    .foto-card-body { padding: 0.6rem 0.75rem 0.8rem; }
    .foto-card-body h4 { font-size: 0.78rem; }
    .foto-card-body p { font-size: 0.7rem; }
    .foto-tag { font-size: 0.6rem; padding: 0.15rem 0.45rem; }
    .section-inner { padding: 3rem 1rem; }
    .insta-grid { grid-template-columns: repeat(3, 1fr); gap: 0.3rem; }
  }

  /* ─── LIGHTBOX ─── */
  .lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.92);
    align-items: center;
    justify-content: center;
    padding: 1rem;
    cursor: zoom-out;
  }
  .lightbox.open { display: flex; }
  .lightbox img {
    max-width: min(92vw, 600px);
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 80px rgba(0,0,0,0.6);
    animation: zoomIn 0.3s ease;
    cursor: default;
  }
  .lightbox-close {
    position: fixed;
    top: 1.2rem; right: 1.5rem;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(255,255,255,0.15);
    border: none;
    border-radius: 50%;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
    z-index: 10000;
  }
  .lightbox-close:hover { background: rgba(255,255,255,0.3); }
  .foto-card { cursor: pointer; }
  @keyframes zoomIn {
    from { opacity: 0; transform: scale(0.85); }
    to   { opacity: 1; transform: scale(1); }
  }

  /* ─── BUSCA / SEARCH DROPDOWN ─── */
  .topbar-search-wrap {
    position: relative;
  }
  .search-results {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 280px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    z-index: 2000;
    overflow: hidden;
    max-height: 360px;
    overflow-y: auto;
  }
  .search-results.open { display: block; }
  .search-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    text-decoration: none;
  }
  .search-item:last-child { border-bottom: none; }
  .search-item:hover, .search-item.focused {
    background: var(--gold-pale);
  }
  .search-item-icon {
    width: 32px; height: 32px;
    background: var(--gold-pale);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
  }
  .search-item-text { flex: 1; }
  .search-item-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
  }
  .search-item-sub {
    font-size: 0.74rem;
    color: var(--text-light);
  }
  .search-empty {
    padding: 16px;
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
  }

  /* ─── PERFORMANCE & ACESSIBILIDADE ─── */

  /* Renderização de imagens suave */
  img { image-rendering: auto; max-width: 100%; }

  /* Otimiza seções fora da viewport (melhora LCP e TTI) */
  /* Nota: não aplicar em #fotos (galeria dinâmica) */
  #temas, #orcamento, #instagram, #curso, #contato {
    content-visibility: auto;
    contain-intrinsic-size: 0 600px;
  }

  /* Evita reflow em cards */
  .foto-card { contain: layout style; }

  /* Skip link acessibilidade */
  .skip-link {
    position: absolute;
    top: -40px; left: 0;
    background: var(--bordo);
    color: white;
    padding: 8px 16px;
    z-index: 99999;
    font-size: 0.9rem;
    transition: top 0.2s;
  }
  .skip-link:focus { top: 0; }

  /* Foco visível para acessibilidade */
  :focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
  }

  /* Otimiza animação hero */
  .hero-slide { will-change: opacity; }

  /* Print */
  @media print {
    .topbar, .navbar, .mobile-menu, .wa-float,
    .fotos-filter, .lightbox, footer { display: none !important; }
    body { background: white; color: black; }
    section { page-break-inside: avoid; }
  }