
    /* ─── RESET & VARIABLES ─────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --red:      #C8191A;
      --red-dark: #A01214;
      --red-light:#E83233;
      --dark:     #2D2D2D;
      --dark2:    #1A1A1A;
      --mid:      #555;
      --light:    #F5F4F0;
      --white:    #FFFFFF;
      --border:   #E2E0DC;
      --font-head: 'Bebas Neue', sans-serif;
      --font-body: 'DM Sans', sans-serif;
      --radius:   8px;
      --shadow:   0 4px 24px rgba(0,0,0,.10);
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      color: var(--dark);
      background: var(--white);
      overflow-x: hidden;
    }

    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }

    /* ─── UTILITIES ─────────────────────────────────────────────────── */
    .container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 32px;
      border-radius: var(--radius);
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 15px;
      cursor: pointer;
      border: none;
      transition: all .25s ease;
      white-space: nowrap;
    }
    .btn-red {
      background: var(--red);
      color: var(--white);
    }
    .btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(200,25,26,.35); }
    .btn-outline {
      background: transparent;
      color: var(--dark);
      border: 2px solid var(--dark);
    }
    .btn-outline:hover { background: var(--dark); color: var(--white); }
    .btn-white {
      background: var(--white);
      color: var(--red);
    }
    .btn-white:hover { background: var(--light); transform: translateY(-2px); }
    .section-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--red);
    }
    .section-title {
      font-family: var(--font-head);
      font-size: clamp(36px, 5vw, 56px);
      line-height: 1;
      letter-spacing: .02em;
      color: var(--dark);
    }
    .section-title span { color: var(--red); }

    /* ─── TOPBAR ────────────────────────────────────────────────────── */
    .topbar {
      background: var(--dark2);
      color: #bbb;
      font-size: 13px;
      padding: 8px 0;
    }
    .topbar .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
    }
    .topbar a { color: #ddd; }
    .topbar a:hover { color: var(--red-light); }

    /* ─── HEADER ────────────────────────────────────────────────────── */
    header {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 12px rgba(0,0,0,.07);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 24px;
      max-width: 1160px;
      margin: 0 auto;
    }
    .logo { height: 52px; }
    nav { display: flex; gap: 32px; align-items: center; }
    nav a {
      font-size: 14px;
      font-weight: 500;
      color: var(--dark);
      transition: color .2s;
    }
    nav a:hover { color: var(--red); }
    .header-cta { display: flex; gap: 12px; align-items: center; }
    .hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); transition: .3s; }

    /* ─── HERO ──────────────────────────────────────────────────────── */
    .hero {
      background: var(--dark2);
      position: relative;
      overflow: hidden;
      min-height: 92vh;
      display: flex;
      align-items: center;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 60% 50%, rgba(200,25,26,.18) 0%, transparent 70%),
        linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
      position: relative;
      z-index: 2;
    }
    .hero-content { color: var(--white); }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(200,25,26,.2);
      border: 1px solid rgba(200,25,26,.4);
      color: #ff8080;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 100px;
      margin-bottom: 24px;
    }
    .hero-title {
      font-family: var(--font-head);
      font-size: clamp(52px, 7vw, 88px);
      line-height: .95;
      letter-spacing: .02em;
      margin-bottom: 24px;
    }
    .hero-title .accent { color: var(--red-light); }
    .hero-desc {
      font-size: 17px;
      line-height: 1.65;
      color: #ccc;
      margin-bottom: 40px;
      max-width: 460px;
    }
    .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
    .hero-stats {
      display: flex;
      gap: 40px;
      margin-top: 56px;
      padding-top: 32px;
      border-top: 1px solid rgba(255,255,255,.1);
    }
    .stat-number {
      font-family: var(--font-head);
      font-size: 40px;
      color: var(--white);
      line-height: 1;
    }
    .stat-number span { color: var(--red-light); }
    .stat-label { font-size: 13px; color: #888; margin-top: 4px; }
    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    /* SVG tent illustration */
    .hero-illustration {
      width: 100%;
      max-width: 520px;
      filter: drop-shadow(0 40px 80px rgba(200,25,26,.3));
      animation: float 4s ease-in-out infinite;
    }
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-16px); }
    }
    .hero-glow {
      position: absolute;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(200,25,26,.3) 0%, transparent 70%);
      border-radius: 50%;
      top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      pointer-events: none;
    }

    /* ─── TRUST BAR ─────────────────────────────────────────────────── */
    .trust-bar {
      background: var(--red);
      padding: 20px 0;
      overflow: hidden;
    }
    .trust-scroll {
      display: flex;
      gap: 64px;
      animation: scroll-left 22s linear infinite;
      width: max-content;
    }
    @keyframes scroll-left {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--white);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: .05em;
      white-space: nowrap;
    }
    .trust-dot { width: 6px; height: 6px; background: rgba(255,255,255,.4); border-radius: 50%; }

    /* ─── PRODUCTS ──────────────────────────────────────────────────── */
    .products { padding: 100px 0; background: var(--light); }
    .section-header {
      text-align: center;
      margin-bottom: 64px;
    }
    .section-header .section-label { margin-bottom: 12px; }
    .section-header .section-title { margin-bottom: 16px; }
    .section-header p {
      font-size: 16px;
      color: var(--mid);
      max-width: 520px;
      margin: 0 auto;
      line-height: 1.7;
    }
    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .product-card {
      background: var(--white);
      border-radius: 12px;
      overflow: hidden;
      transition: all .3s ease;
      cursor: pointer;
      border: 1px solid var(--border);
    }
    .product-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 48px rgba(0,0,0,.12);
      border-color: var(--red);
    }
    .product-visual {
      background: linear-gradient(135deg, #f0eeea 0%, #e8e5df 100%);
      height: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .product-visual svg { transition: transform .35s ease; }
    .product-card:hover .product-visual svg { transform: scale(1.08); }
    .product-tag {
      position: absolute;
      top: 14px; right: 14px;
      background: var(--red);
      color: var(--white);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 100px;
    }
    .product-info { padding: 24px; }
    .product-name {
      font-family: var(--font-head);
      font-size: 24px;
      letter-spacing: .03em;
      margin-bottom: 8px;
    }
    .product-desc { font-size: 14px; color: var(--mid); line-height: 1.6; margin-bottom: 18px; }
    .product-features {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 20px;
    }
    .feature-tag {
      font-size: 11px;
      font-weight: 600;
      background: #f0eeea;
      color: var(--dark);
      padding: 4px 10px;
      border-radius: 100px;
    }
    .product-cta {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 700;
      color: var(--red);
      text-transform: uppercase;
      letter-spacing: .08em;
    }
    .product-cta svg { transition: transform .2s; }
    .product-card:hover .product-cta svg { transform: translateX(4px); }

    /* ─── CATEGORIES FULL ───────────────────────────────────────────── */
    .accessories { padding: 100px 0; background: var(--white); }
    .acc-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .acc-card {
      border-radius: 12px;
      padding: 32px 28px;
      background: var(--light);
      border: 1px solid var(--border);
      transition: all .3s;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .acc-card:hover { background: var(--dark2); color: var(--white); border-color: var(--red); }
    .acc-icon {
      width: 52px; height: 52px;
      background: var(--red);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      transition: background .3s;
    }
    .acc-card:hover .acc-icon { background: var(--red-light); }
    .acc-title {
      font-family: var(--font-head);
      font-size: 22px;
      letter-spacing: .03em;
    }
    .acc-desc { font-size: 14px; color: var(--mid); line-height: 1.6; }
    .acc-card:hover .acc-desc { color: #aaa; }

    /* ─── HOW IT WORKS ──────────────────────────────────────────────── */
    .how { padding: 100px 0; background: var(--dark2); }
    .how .section-title { color: var(--white); }
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 60px;
      position: relative;
    }
    .steps-grid::before {
      content: '';
      position: absolute;
      top: 32px;
      left: 10%;
      right: 10%;
      height: 2px;
      background: linear-gradient(90deg, var(--red), var(--red-light));
      z-index: 0;
    }
    .step {
      text-align: center;
      position: relative;
      z-index: 1;
    }
    .step-num {
      width: 64px; height: 64px;
      border-radius: 50%;
      background: var(--red);
      color: var(--white);
      font-family: var(--font-head);
      font-size: 26px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      box-shadow: 0 0 0 6px rgba(200,25,26,.2);
    }
    .step-title {
      font-family: var(--font-head);
      font-size: 20px;
      color: var(--white);
      letter-spacing: .03em;
      margin-bottom: 8px;
    }
    .step-desc { font-size: 13px; color: #888; line-height: 1.65; }

    /* ─── DIFFERENTIALS ─────────────────────────────────────────────── */
    .differentials { padding: 100px 0; background: var(--light); }
    .diff-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .diff-content .section-label { margin-bottom: 12px; }
    .diff-content .section-title { margin-bottom: 20px; }
    .diff-content p { font-size: 16px; color: var(--mid); line-height: 1.75; margin-bottom: 32px; }
    .diff-items { display: flex; flex-direction: column; gap: 20px; }
    .diff-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }
    .diff-bullet {
      width: 42px; height: 42px; flex-shrink: 0;
      background: var(--red);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
    }
    .diff-text h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
    .diff-text p { font-size: 13px; color: var(--mid); margin-bottom: 0; }
    .diff-visual {
      position: relative;
    }
    .diff-main-img {
      border-radius: 16px;
      overflow: hidden;
      background: linear-gradient(135deg, var(--dark2), #3d3d3d);
      aspect-ratio: 4/5;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .diff-badge {
      position: absolute;
      bottom: -20px;
      left: -20px;
      background: var(--red);
      color: var(--white);
      padding: 20px 24px;
      border-radius: 12px;
      box-shadow: var(--shadow);
    }
    .diff-badge-num {
      font-family: var(--font-head);
      font-size: 40px;
      line-height: 1;
    }
    .diff-badge-label { font-size: 12px; font-weight: 600; opacity: .85; margin-top: 4px; }

    /* ─── TESTIMONIALS ──────────────────────────────────────────────── */
    .testimonials { padding: 100px 0; background: var(--white); }
    .test-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 60px;
    }
    .test-card {
      background: var(--light);
      border-radius: 12px;
      padding: 32px;
      border: 1px solid var(--border);
      position: relative;
    }
    .test-card::before {
      content: '"';
      font-family: var(--font-head);
      font-size: 96px;
      color: var(--red);
      opacity: .15;
      position: absolute;
      top: 12px; left: 20px;
      line-height: 1;
    }
    .test-text { font-size: 15px; line-height: 1.75; color: var(--mid); margin-bottom: 24px; padding-top: 32px; }
    .test-author { display: flex; align-items: center; gap: 12px; }
    .test-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--red);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-head);
      font-size: 18px;
      color: var(--white);
      flex-shrink: 0;
    }
    .test-name { font-weight: 700; font-size: 14px; }
    .test-role { font-size: 12px; color: var(--mid); }
    .stars { color: var(--red); font-size: 13px; margin-bottom: 8px; }

    /* ─── CTA BANNER ────────────────────────────────────────────────── */
    .cta-banner {
      background: var(--red);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }
    .cta-banner::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: rgba(255,255,255,.06);
    }
    .cta-banner::after {
      content: '';
      position: absolute;
      bottom: -60px; left: -60px;
      width: 300px; height: 300px;
      border-radius: 50%;
      background: rgba(0,0,0,.08);
    }
    .cta-inner {
      position: relative; z-index: 2;
      text-align: center;
      color: var(--white);
    }
    .cta-inner .section-label { color: rgba(255,255,255,.7); margin-bottom: 12px; }
    .cta-inner h2 {
      font-family: var(--font-head);
      font-size: clamp(40px, 6vw, 72px);
      letter-spacing: .02em;
      line-height: 1;
      margin-bottom: 20px;
    }
    .cta-inner p { font-size: 17px; opacity: .85; max-width: 500px; margin: 0 auto 40px; line-height: 1.65; }
    .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .cta-contact {
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.25);
      color: var(--white);
      padding: 14px 28px;
      border-radius: var(--radius);
      font-weight: 600;
      font-size: 15px;
      transition: all .25s;
    }
    .cta-contact:hover { background: rgba(255,255,255,.22); }

    /* ─── CONTACT SECTION ───────────────────────────────────────────── */
    .contact { padding: 100px 0; background: var(--light); }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 64px;
      align-items: start;
    }
    .contact-info h3 {
      font-family: var(--font-head);
      font-size: 36px;
      letter-spacing: .03em;
      margin-bottom: 16px;
    }
    .contact-info p { font-size: 15px; color: var(--mid); line-height: 1.7; margin-bottom: 32px; }
    .contact-items { display: flex; flex-direction: column; gap: 18px; }
    .contact-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }
    .contact-icon {
      width: 44px; height: 44px; flex-shrink: 0;
      background: var(--red);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
    }
    .contact-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--red); margin-bottom: 3px; }
    .contact-value { font-size: 15px; font-weight: 600; }
    .contact-form {
      background: var(--white);
      border-radius: 16px;
      padding: 40px;
      border: 1px solid var(--border);
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
    .form-group label { font-size: 13px; font-weight: 600; color: var(--dark); }
    .form-group input,
    .form-group select,
    .form-group textarea {
      padding: 12px 14px;
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      font-family: var(--font-body);
      font-size: 14px;
      color: var(--dark);
      background: var(--white);
      transition: border-color .2s;
      outline: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: var(--red); }
    .form-group textarea { min-height: 100px; resize: vertical; }
    .form-submit { width: 100%; padding: 16px; font-size: 16px; }

    /* ─── FOOTER ────────────────────────────────────────────────────── */
    footer {
      background: var(--dark2);
      color: #aaa;
      padding: 64px 0 32px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }
    .footer-brand p { font-size: 14px; line-height: 1.7; margin: 16px 0 24px; }
    .footer-logo { filter: brightness(10); height: 44px; }
    .footer-socials { display: flex; gap: 12px; }
    .social-btn {
      width: 38px; height: 38px;
      border-radius: 8px;
      background: rgba(255,255,255,.07);
      display: flex; align-items: center; justify-content: center;
      color: #bbb;
      transition: all .2s;
    }
    .social-btn:hover { background: var(--red); color: var(--white); }
    .footer-col h4 {
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--white);
      margin-bottom: 20px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a { font-size: 14px; color: #888; transition: color .2s; }
    .footer-col ul li a:hover { color: var(--red-light); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.07);
      padding-top: 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 13px;
    }

    /* ─── WHATSAPP FLOAT ────────────────────────────────────────────── */
    .wa-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 999;
      background: #25D366;
      color: var(--white);
      width: 60px; height: 60px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 6px 24px rgba(37,211,102,.45);
      transition: all .3s;
      animation: pulse-wa 2.5s ease-in-out infinite;
    }
    .wa-float:hover { transform: scale(1.1); }
    @keyframes pulse-wa {
      0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.45); }
      50% { box-shadow: 0 6px 40px rgba(37,211,102,.7); }
    }

    /* ─── RESPONSIVE ────────────────────────────────────────────────── */
    @media (max-width: 900px) {
      .hero-grid { grid-template-columns: 1fr; }
      .hero-visual { display: none; }
      .products-grid { grid-template-columns: 1fr 1fr; }
      .acc-grid { grid-template-columns: 1fr 1fr; }
      .steps-grid { grid-template-columns: 1fr 1fr; }
      .steps-grid::before { display: none; }
      .diff-grid { grid-template-columns: 1fr; }
      .diff-visual { display: none; }
      .test-grid { grid-template-columns: 1fr 1fr; }
      .contact-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      nav { display: none; }
      .hamburger { display: flex; }
      .header-cta .btn-outline { display: none; }
    }
    @media (max-width: 600px) {
      .products-grid { grid-template-columns: 1fr; }
      .acc-grid { grid-template-columns: 1fr; }
      .steps-grid { grid-template-columns: 1fr; }
      .test-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .contact-form { padding: 24px; }
      .hero-stats { gap: 24px; }
    }

    /* ─── ANIMATIONS ────────────────────────────────────────────────── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(32px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-content > * { animation: fadeUp .7s ease both; }
    .hero-badge { animation-delay: .1s; }
    .hero-title { animation-delay: .2s; }
    .hero-desc  { animation-delay: .3s; }
    .hero-actions { animation-delay: .4s; }
    .hero-stats { animation-delay: .5s; }

    /* ─── CATEGORY HEADERS ──────────────────────────────────────────── */
    .cat-header {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 28px;
    }
    .cat-bar {
      width: 4px;
      height: 40px;
      background: var(--red);
      border-radius: 4px;
      flex-shrink: 0;
    }
    .cat-title {
      font-family: var(--font-head);
      font-size: 32px;
      letter-spacing: .04em;
      color: var(--dark);
    }
    /* ─── 2-COL GRID FOR SOMBREADORES + UTILIDADES ──────────────────── */
    .products-grid-2col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }
    .products-grid-2col .product-card .product-visual {
      height: 180px;
    }
    @media (max-width: 780px) {
      .products-grid-2col { grid-template-columns: 1fr; }
    }

  
/* ═══ V2 ADDITIONS ═══════════════════════════════════════════════════════════ */

/* ─── Topbar com 2 linhas ─────────────────────────────────────────────────── */
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.topbar-info .topbar-line {
  font-size: 13px;
  color: #bbb;
  line-height: 1.4;
}
.topbar-contacts {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
}
@media (max-width: 600px) {
  .topbar .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .topbar-contacts {
    gap: 14px;
  }
}

/* ─── Product image wrapper (lightbox trigger) ───────────────────────────── */
.product-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: zoom-in;
}
.product-image-wrapper img {
  transition: transform .35s ease, filter .35s ease;
}
.product-image-wrapper:hover img {
  transform: scale(1.06);
  filter: brightness(.92);
}
.product-image-wrapper .zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52px;
  height: 52px;
  margin-left: -26px;
  margin-top: -26px;
  background: rgba(200, 25, 26, .92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(.7);
  transition: all .3s ease;
  pointer-events: none;
}
.product-image-wrapper:hover .zoom-icon {
  opacity: 1;
  transform: scale(1);
}
.product-image-wrapper .gallery-count {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, .65);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

/* ─── Lightbox ────────────────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .94);
  cursor: pointer;
}
.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
  background: #1a1a1a;
}
.lightbox-info {
  text-align: center;
  color: white;
}
.lightbox-title {
  font-family: var(--font-head);
  font-size: 22px;
  letter-spacing: .04em;
  margin-bottom: 4px;
}
.lightbox-counter {
  font-size: 13px;
  color: #aaa;
  letter-spacing: .1em;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  z-index: 3;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: white;
  border: none;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  backdrop-filter: blur(10px);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--red);
  transform: scale(1.08);
}
.lightbox-close {
  top: 24px;
  right: 24px;
  font-size: 32px;
  line-height: 1;
}
.lightbox-prev {
  left: 24px;
  top: 50%;
  margin-top: -26px;
  font-size: 36px;
}
.lightbox-next {
  right: 24px;
  top: 50%;
  margin-top: -26px;
  font-size: 36px;
}
@media (max-width: 600px) {
  .lightbox {
    padding: 16px;
  }
  .lightbox-close,
  .lightbox-prev,
  .lightbox-next {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }
  .lightbox-close {
    top: 12px;
    right: 12px;
  }
  .lightbox-prev {
    left: 8px;
  }
  .lightbox-next {
    right: 8px;
  }
  .lightbox-title {
    font-size: 18px;
  }
}

/* ─── Tabs: Locação ↔ Venda ───────────────────────────────────────────────── */
.how-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 40px 0 16px;
}
.how-tab {
  background: rgba(255, 255, 255, .06);
  color: #ccc;
  border: 1.5px solid rgba(255, 255, 255, .12);
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s ease;
}
.how-tab:hover {
  background: rgba(255, 255, 255, .12);
  color: white;
}
.how-tab.active {
  background: var(--red);
  border-color: var(--red);
  color: white;
  box-shadow: 0 8px 24px rgba(200, 25, 26, .35);
}
@media (max-width: 600px) {
  .how-tabs {
    gap: 8px;
  }
  .how-tab {
    padding: 12px 22px;
    font-size: 14px;
  }
}

/* ─── Garantir que conteúdo das etapas sempre exiba como grid ─────────────── */
.how-content.active,
.how-content[data-content="rent"] {
  display: grid;
}

/* ─── Hero com foto de fundo ──────────────────────────────────────────────── */
.hero--with-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #0a0a0a;
}
.hero--with-bg .hero-bg {
  /* Esconde o gradiente vermelho radial padrão quando há foto */
  background: linear-gradient(135deg, rgba(15,15,15,.85) 0%, rgba(20,20,20,.65) 50%, rgba(15,15,15,.85) 100%);
}
.hero--with-bg .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.55) 50%, rgba(0,0,0,.35) 100%),
    radial-gradient(ellipse 60% 100% at 0% 50%, rgba(200,25,26,.18) 0%, transparent 60%);
  pointer-events: none;
}
.hero--with-bg .container {
  position: relative;
  z-index: 2;
}
/* Quando tem foto, conteúdo ocupa apenas metade esquerda (texto não vai sobre a foto principal do produto) */
.hero-grid--full {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
.hero-grid--full .hero-content {
  max-width: 600px;
}
@media (max-width: 900px) {
  .hero-grid--full {
    grid-template-columns: 1fr;
  }
  .hero--with-bg .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.85) 70%, rgba(0,0,0,.95) 100%),
      radial-gradient(ellipse at center, rgba(200,25,26,.15) 0%, transparent 70%);
  }
}
/* Quando o hero tem foto, o título fica ainda mais impactante */
.hero--with-bg .hero-title {
  text-shadow: 0 4px 20px rgba(0,0,0,.5);
}
.hero--with-bg .hero-desc {
  text-shadow: 0 2px 10px rgba(0,0,0,.5);
}

/* ─── v2.2: Brand icons and gradient ──────────────────────────────────────── */

/* Floating WhatsApp button — white icon */
.wa-float svg { color: white; }

/* Instagram social button — gradient on hover */
.social-btn--instagram:hover {
    background: linear-gradient(45deg, #fed576 0%, #f47133 26%, #bc3081 61%, #4c63d2 100%);
}
.social-btn--instagram svg path { fill: currentColor; }
.social-btn--instagram { color: #fff; }
.social-btn--instagram:hover { color: white; }

/* Contact section icons — white inside red square */
.contact-icon svg { color: white; }
.contact-icon--whatsapp { background: #25D366 !important; }

/* Header WhatsApp button — white icon */
header .btn-red svg { color: white; }

/* CTA banner WhatsApp green icon stays as designed */
.cta-banner .btn-white svg path { fill: #25D366 !important; }

/* Footer and catalog overrides */
.clients {
  padding: 92px 0;
  background: #fff;
  overflow: hidden;
}

.clients-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 16px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  animation: clients-scroll 28s linear infinite;
}

.clients-marquee:hover .clients-track {
  animation-play-state: paused;
}

.client-logo-card {
  width: 220px;
  min-width: 220px;
  height: 110px;
  padding: 18px 22px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(0,0,0,.05);
}

.client-logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .85;
  transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}

.client-logo-card:hover .client-logo-image {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.03);
}

@keyframes clients-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 12px)); }
}

.footer-grid--compact {
  grid-template-columns: minmax(240px, 1fr) minmax(0, 2fr);
  align-items: start;
  gap: 56px;
  margin-bottom: 36px;
}

.footer-offices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.footer-offices .footer-col h4 {
  margin-top: 0 !important;
}

@media (max-width: 900px) {
  .footer-grid--compact {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .client-logo-card {
    width: 170px;
    min-width: 170px;
    height: 88px;
    padding: 14px 18px;
  }

  .footer-offices {
    grid-template-columns: 1fr;
  }
}
/* Correção definitiva: remove listras/degradês diagonais do hero */
.hero--with-bg .hero-bg {
  display: none !important;
  background: transparent !important;
  background-image: none !important;
}

.hero--with-bg .hero-overlay {
  background: rgba(0, 0, 0, .58) !important;
  background-image: none !important;
}

.hero--with-bg::before,
.hero--with-bg::after,
.hero::before,
.hero::after {
  content: none !important;
  display: none !important;
  background: none !important;
}
