:root {
    --black:      #0d0d0d;
    --black-mid:  #161616;
    --black-card: #1e1e1e;
    --black-lite: #2a2a2a;
    --red:        #e01f1f;
    --red-bright: #ff3333;
    --red-soft:   #ff7070;
    --red-dim:    rgba(224,31,31,0.18);
    --white:      #ffffff;
    --gray:       #888888;
    --border:     rgba(224,31,31,0.22);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; font-size: 16px; }
  body { font-family: 'DM Sans', sans-serif; background: var(--black); color: var(--white); overflow-x: hidden; }
  ::-webkit-scrollbar { width: 5px; }
  ::-webkit-scrollbar-track { background: var(--black); }
  ::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 5%; background: rgba(13,13,13,0.88);
    backdrop-filter: blur(18px); border-bottom: 1px solid var(--border); transition: background .3s;
  }
  .logo { font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--white); letter-spacing: -0.5px; }
  .logo span { color: var(--red); }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a { color: var(--gray); text-decoration: none; font-size: .88rem; font-weight: 500; transition: color .2s; }
  .nav-links a:hover { color: var(--red); }
  .nav-cta {
    background: var(--red); color: var(--white); padding: .52rem 1.3rem; border-radius: 6px;
    font-weight: 700; text-decoration: none; font-size: .86rem;
    display: flex; align-items: center; gap: .45rem; transition: transform .2s, box-shadow .2s;
  }
  .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(224,31,31,.4); }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
  .hamburger span { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 2px; }

  #inicio { min-height: 100vh; display: flex; align-items: center; padding: 7rem 5% 4rem; position: relative; overflow: hidden; }
  .hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 65% 55% at 85% 50%, rgba(224,31,31,.12) 0%, transparent 60%),
                radial-gradient(ellipse 40% 60% at 5% 85%, rgba(224,31,31,.06) 0%, transparent 55%),
                linear-gradient(160deg, #0d0d0d 0%, #1a0808 100%);
  }
  .grid-lines {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(224,31,31,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(224,31,31,.04) 1px, transparent 1px);
    background-size: 60px 60px;
  }
  .hero-content { position: relative; z-index: 2; max-width: 680px; }
  .hero-tag {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(224,31,31,.12); border: 1px solid rgba(224,31,31,.35);
    color: var(--red-soft); padding: .35rem 1rem; border-radius: 50px;
    font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
    margin-bottom: 2rem; animation: fadeUp .7s ease both;
  }
  h1 {
    font-family: 'Syne', sans-serif; font-size: clamp(2.5rem, 6vw, 4.3rem);
    font-weight: 800; line-height: 1.08; letter-spacing: -1.5px; margin-bottom: 1.5rem;
    animation: fadeUp .7s .15s ease both;
  }
  h1 em { color: var(--red); font-style: normal; }
  .hero-desc { color: var(--gray); font-size: 1.08rem; line-height: 1.8; max-width: 510px; margin-bottom: 2.5rem; animation: fadeUp .7s .25s ease both; }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp .7s .35s ease both; }
  .btn-primary {
    background: var(--red); color: var(--white); padding: .85rem 2rem; border-radius: 8px;
    font-weight: 700; text-decoration: none; font-size: 1rem; display: flex; align-items: center; gap: .6rem;
    transition: transform .2s, box-shadow .2s;
  }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(224,31,31,.4); }
  .btn-outline {
    border: 1.5px solid rgba(255,255,255,.18); color: var(--white);
    padding: .85rem 2rem; border-radius: 8px; font-weight: 500; text-decoration: none; font-size: 1rem;
    display: flex; align-items: center; gap: .6rem; transition: border-color .2s, background .2s;
  }
  .btn-outline:hover { border-color: var(--red); background: rgba(224,31,31,.07); }

  .hero-visual {
    position: absolute; right: 4%; top: 50%; transform: translateY(-50%);
    width: min(420px, 37vw); animation: fadeLeft .9s .3s ease both; z-index: 2;
  }
  .hero-card {
    background: rgba(30,30,30,.9); border: 1px solid var(--border); border-radius: 20px; padding: 2rem;
    backdrop-filter: blur(12px); box-shadow: 0 30px 80px rgba(0,0,0,.5);
  }
  .hc-row { display: flex; align-items: center; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.05); }
  .hc-row:last-child { border-bottom: none; }
  .hc-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
  .hc-icon.r { background: rgba(224,31,31,.15); color: var(--red-soft); }
  .hc-icon.w { background: rgba(255,255,255,.08); color: #ccc; }
  .hc-info p:first-child { font-size: .74rem; color: var(--gray); margin-bottom: .2rem; }
  .hc-info p:last-child { font-size: .94rem; font-weight: 600; }

  section { padding: 6rem 5%; }
  .section-label {
    display: inline-flex; align-items: center; gap: .5rem;
    color: var(--red); font-size: .77rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; margin-bottom: 1rem;
  }
  .section-label::before { content: ''; display: block; width: 28px; height: 2px; background: var(--red); }
  h2 { font-family: 'Syne', sans-serif; font-size: clamp(1.9rem, 4vw, 2.75rem); font-weight: 800; line-height: 1.15; letter-spacing: -1px; margin-bottom: 1rem; }
  .section-sub { color: var(--gray); font-size: .98rem; line-height: 1.72; max-width: 560px; }

  #sobre { background: var(--black-mid); }
  .sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 3.5rem; }
  .sobre-img-wrap { position: relative; }
  .sobre-img-box {
    background: linear-gradient(135deg, var(--black-card), rgba(224,31,31,.08));
    border: 1px solid var(--border); border-radius: 20px; padding: 2.5rem; text-align: center; font-size: 8rem; line-height: 1;
  }
  .sobre-badge {
    position: absolute; bottom: -1.5rem; right: -1rem;
    background: var(--red); color: var(--white); padding: 1rem 1.4rem; border-radius: 14px;
    font-family: 'Syne', sans-serif; font-weight: 800; text-align: center; box-shadow: 0 10px 30px rgba(224,31,31,.35);
  }
  .sobre-badge span { font-size: 2rem; display: block; }
  .sobre-badge small { font-size: .7rem; font-weight: 600; letter-spacing: .05em; }
  .sobre-text p { color: var(--gray); line-height: 1.8; margin-bottom: 1.2rem; }
  .sobre-pills { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2rem; }
  .pill { background: rgba(224,31,31,.1); border: 1px solid rgba(224,31,31,.28); color: var(--red-soft); padding: .4rem 1rem; border-radius: 50px; font-size: .82rem; font-weight: 600; }

  #servicos { background: var(--black); }
  .servicos-header { text-align: center; margin-bottom: 3.5rem; }
  .servicos-header .section-sub { margin: 0 auto; }
  .servicos-header .section-label { justify-content: center; }
  .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 1.4rem; }
  .service-card {
    background: var(--black-card); border: 1px solid rgba(255,255,255,.05); border-radius: 16px; padding: 2rem;
    transition: transform .3s, border-color .3s, box-shadow .3s; position: relative; overflow: hidden;
  }
  .service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .3s;
  }
  .service-card:hover { transform: translateY(-6px); border-color: var(--border); box-shadow: 0 20px 50px rgba(0,0,0,.4); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-icon { width: 52px; height: 52px; border-radius: 12px; background: rgba(224,31,31,.12); color: var(--red-soft); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 1.4rem; }
  .service-card h3 { font-family: 'Syne', sans-serif; font-size: 1.08rem; font-weight: 700; margin-bottom: .6rem; }
  .service-card p { color: var(--gray); font-size: .9rem; line-height: 1.65; }

  #galeria { background: var(--black-mid); }
  .galeria-header { text-align: center; margin-bottom: 3rem; }
  .gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
  .gallery-item {
    border-radius: 16px; overflow: hidden; background: var(--black-card); cursor: pointer;
    border: 1px solid rgba(255,255,255,.06); transition: transform .3s, border-color .3s, box-shadow .3s;
    display: flex; flex-direction: column;
  }
  .gallery-item:hover { transform: translateY(-5px); border-color: var(--border); box-shadow: 0 16px 40px rgba(224,31,31,.18); }
  .gallery-item.featured { grid-column: span 2; }
  .gallery-visual { padding: 2rem 1.5rem 1rem; display: flex; align-items: center; justify-content: center; flex: 1; min-height: 180px; }
  .gallery-label { padding: .8rem 1.2rem; border-top: 1px solid rgba(255,255,255,.06); }
  .gallery-label strong { font-family: 'Syne', sans-serif; font-size: .9rem; font-weight: 700; display: block; }
  .gallery-label span { font-size: .76rem; color: var(--gray); }

  .horario-banner { background: var(--red); padding: 2rem 5%; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
  .horario-banner > div { display: flex; align-items: center; gap: 1rem; }
  .horario-banner i { font-size: 1.7rem; }
  .horario-banner h4 { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 800; }
  .horario-banner p { font-size: .88rem; opacity: .82; }
  .horario-badge { background: var(--black); color: var(--red); padding: .6rem 1.4rem; border-radius: 8px; font-weight: 700; font-size: .9rem; }

  #localizacao { background: var(--black); }
  .loc-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start; margin-top: 3.5rem; }
  .loc-info h3 { font-family: 'Syne', sans-serif; font-size: 1.25rem; margin-bottom: 2rem; }
  .info-item { display: flex; gap: 1rem; margin-bottom: 1.8rem; align-items: flex-start; }
  .info-icon { width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0; background: rgba(224,31,31,.1); color: var(--red-soft); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
  .info-item p { font-size: .82rem; color: var(--gray); margin-bottom: .2rem; }
  .info-item strong { font-size: .94rem; line-height: 1.5; }
  .map-wrap { border-radius: 18px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 20px 60px rgba(0,0,0,.4); height: 380px; }
  .map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

  #contato { background: var(--black-mid); }
  .contato-inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; flex-wrap: wrap; }
  .contato-text h2 { max-width: 420px; }
  .contato-text p { color: var(--gray); margin-top: 1rem; max-width: 380px; line-height: 1.7; }
  .contato-actions { display: flex; flex-direction: column; gap: 1rem; }
  .contact-btn { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.8rem; border-radius: 12px; text-decoration: none; font-weight: 600; transition: transform .2s, box-shadow .2s; min-width: 280px; }
  .contact-btn:hover { transform: translateX(4px); }
  .contact-btn.wa { background: #25d366; color: white; }
  .contact-btn.wa:hover { box-shadow: 0 8px 28px rgba(37,211,102,.35); }
  .contact-btn.ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
  .contact-btn.ig:hover { box-shadow: 0 8px 28px rgba(220,39,67,.35); }
  .contact-btn i { font-size: 1.4rem; }
  .contact-btn span { line-height: 1.3; }
  .contact-btn span small { display: block; font-size: .78rem; font-weight: 400; opacity: .85; }

  footer { background: #080808; padding: 3rem 5% 2rem; border-top: 1px solid rgba(255,255,255,.04); }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
  .footer-brand .logo { font-size: 1.3rem; margin-bottom: .8rem; display: block; }
  .footer-brand p { color: var(--gray); font-size: .87rem; line-height: 1.7; }
  footer h5 { font-family: 'Syne', sans-serif; font-size: .83rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--red); margin-bottom: 1rem; }
  footer ul { list-style: none; }
  footer ul li { margin-bottom: .6rem; }
  footer ul a { color: var(--gray); text-decoration: none; font-size: .87rem; transition: color .2s; }
  footer ul a:hover { color: var(--white); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,.05); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
  .footer-bottom p { color: var(--gray); font-size: .81rem; }
  .footer-socials { display: flex; gap: .8rem; }
  .footer-socials a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.06); color: var(--gray); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: background .2s, color .2s; }
  .footer-socials a:hover { background: var(--red); color: var(--white); }

  @keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
  @keyframes fadeLeft { from { opacity:0; transform:translate(30px,-50%); } to { opacity:1; transform:translate(0,-50%); } }
  .reveal { opacity:0; transform:translateY(28px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.visible { opacity:1; transform:none; }

  .mobile-menu { display: none; flex-direction: column; position: fixed; inset: 0; z-index: 999; background: var(--black-mid); padding: 6rem 2rem 2rem; gap: 2rem; }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { color: var(--white); text-decoration: none; font-family: 'Syne', sans-serif; font-size: 1.6rem; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.06); padding-bottom: 1.2rem; transition: color .2s; }
  .mobile-menu a:hover { color: var(--red); }
  .close-menu { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }

  @media (max-width: 1000px) {
    .hero-visual { display: none; }
    .sobre-grid { grid-template-columns: 1fr; gap: 3rem; }
    .loc-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.featured { grid-column: span 1; }
  }
  @media (max-width: 680px) {
    nav .nav-links, nav .nav-cta { display: none; }
    .hamburger { display: flex; }
    .hero-actions { flex-direction: column; }
    .btn-primary, .btn-outline { justify-content: center; }
    .contato-inner { flex-direction: column; }
    .contato-actions { width: 100%; }
    .contact-btn { min-width: unset; }
    .footer-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .horario-banner { flex-direction: column; }
  }

  /* ── PRODUTOS ─────────────────────────────────────────────── */
  #produtos { background: var(--black); }
  .produtos-header { text-align: center; margin-bottom: 3.5rem; }
  .produtos-header .section-label { justify-content: center; }

  .produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.6rem;
  }

  .produto-card {
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .3s, border-color .3s, box-shadow .3s;
  }
  .produto-card:hover {
    transform: translateY(-6px);
    border-color: var(--border);
    box-shadow: 0 20px 50px rgba(224,31,31,.15);
  }

  .produto-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
  }
  .produto-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
  }
  .produto-card:hover .produto-img-wrap img {
    transform: scale(1.04);
  }

  .produto-badge {
    position: absolute;
    top: .8rem; left: .8rem;
    background: var(--red);
    color: var(--white);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .3rem .8rem;
    border-radius: 50px;
  }

  .produto-info {
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: .6rem;
  }
  .produto-info strong {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
  }
  .produto-info p {
    color: var(--gray);
    font-size: .875rem;
    line-height: 1.65;
    flex: 1;
  }

  .produto-cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-top: .4rem;
    background: #25d366;
    color: #fff;
    padding: .6rem 1.2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: .88rem;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    align-self: flex-start;
  }
  .produto-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,.35);
  }

  @media (max-width: 680px) {
    .produtos-grid { grid-template-columns: 1fr; }
  }
