@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800;900&family=Satisfy&display=swap');

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

/* --- Keyframes --- */
@keyframes fadeInUp    { from { opacity:0; transform:translateY(50px);  } to { opacity:1; transform:translateY(0);  } }
@keyframes fadeInLeft  { from { opacity:0; transform:translateX(-55px); } to { opacity:1; transform:translateX(0); } }
@keyframes fadeInRight { from { opacity:0; transform:translateX(55px);  } to { opacity:1; transform:translateX(0); } }
@keyframes scaleIn     { from { opacity:0; transform:scale(0.82);       } to { opacity:1; transform:scale(1);      } }
@keyframes slideDownHdr{ from { opacity:0; transform:translateY(-100%); } to { opacity:1; transform:translateY(0); } }

@keyframes floatImg {
    0%,100% { transform: translateX(-50%) translateY(0px);   }
    50%      { transform: translateX(-50%) translateY(-14px); }
}
@keyframes pulseBadgeD {
    0%,100% { transform: translateY(-50%) scale(1);    }
    50%      { transform: translateY(-50%) scale(1.07); }
}
@keyframes pulseBadgeM {
    0%,100% { transform: translateX(-50%) scale(1);    }
    50%      { transform: translateX(-50%) scale(1.07); }
}

/* --- Scroll-reveal base --- */
.anim-init  { opacity: 0; }
.anim-up    { animation: fadeInUp    0.75s cubic-bezier(0.4,0,0.2,1) forwards; }
.anim-left  { animation: fadeInLeft  0.75s cubic-bezier(0.4,0,0.2,1) forwards; }
.anim-right { animation: fadeInRight 0.75s cubic-bezier(0.4,0,0.2,1) forwards; }
.anim-scale { animation: scaleIn     0.75s cubic-bezier(0.4,0,0.2,1) forwards; }

/* --- Header slide-down on load --- */
.header { animation: slideDownHdr 0.7s cubic-bezier(0.4,0,0.2,1) both; }

/* --- Product image continuous float --- */
.product-image { animation: floatImg 3.5s ease-in-out infinite; }
.product-card:hover .product-image {
    animation: none;
    transform: translateX(-50%) translateY(-12px) scale(1.06);
}

/* --- Stamp badge pulse --- */
.stamp-badge { animation: pulseBadgeD 2.8s ease-in-out infinite; }

/* --- Card hover lift --- */
.product-card {
    transition: box-shadow 0.35s ease;
}
.product-card:hover {
    box-shadow: 0 24px 55px rgba(0,0,0,0.18);
}

/* --- Gallery hover --- */
.gallery-item { transition: transform 0.35s ease, box-shadow 0.35s ease; }
.gallery-item:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 18px 40px rgba(0,0,0,0.14); }

/* --- Brand card hover --- */
.brand-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.brand-card:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 10px 25px rgba(0,0,0,0.12); }

/* --- Nav link underline hover --- */
.header .nav-link { position: relative; }
.header .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 50%;
    width: 0; height: 2px;
    background: var(--primary-teal);
    transition: width 0.3s ease, left 0.3s ease;
}
.header .nav-link:hover::after { width: 100%; left: 0; }

/* Mobile: badge pulse usa translateX */
@media (max-width: 767px) {
    .stamp-badge { animation: pulseBadgeM 2.8s ease-in-out infinite; }
}

html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    margin: 0;
    padding: 0;
}

:root {
    --primary-teal: #158888;
    --secondary-teal: #158888;
    --footer-teal: #0d4d4d;
    --accent-purple: #5d2183;
    --bg-cream: #fdf6e2;
    --text-white: #ffffff;
    --blue-light: #a1d7d7;
    
    --font-main: 'Montserrat', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-cream);
    color: var(--primary-teal);
    overflow-x: hidden;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
    background: #0d4d4d;
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.2);
}

.header .logo img { height: 60px; }

.header .nav-link {
    color: var(--text-white) !important;
    font-weight: 700;
    font-size: 1rem;
    margin: 0 12px;
    text-decoration: none;
    text-transform: uppercase;
}

/* ==========================================================================
   HERO / BANNER
   ========================================================================== */
.hero-section {
    margin-top: 100px;
    position: relative;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Padrão de ondas no lado direito */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(0,0,0,0.05) 20px, rgba(0,0,0,0.05) 40px);
    opacity: 0.3;
    z-index: 1;
}

.hero-logo-box {
    background: var(--primary-teal);
    padding: 20px;
    display: inline-block;
    margin-bottom: 20px;
    border-radius: 0 0 10px 10px;
    position: relative;
    z-index: 10;
}

.hero-logo-box img { width: 100px; }

.hero-content {
    position: relative;
    z-index: 10;
    color: white;
}

.hero-title {
    font-size: 6rem;
    font-family: 'Satisfy', cursive;
    margin-bottom: 0;
    line-height: 0.8;
}

.hero-subtitle {
    font-weight: 900;
    font-size: 2.8rem;
    text-transform: uppercase;
    line-height: 1;
    margin: 10px 0;
}

.small-wave {
    width: 60px;
    height: 10px;
    background-color: var(--primary-teal);
    clip-path: polygon(0 50%, 10% 0, 20% 100%, 30% 0, 40% 100%, 50% 0, 60% 100%, 70% 0, 80% 100%, 90% 0, 100% 50%, 100% 80%, 0 80%);
    margin: 15px 0 40px;
}

.hero-bg-img {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 2;
    display: block;
}

/* ==========================================================================
   PROMO INFO (CHEVRONS)
   ========================================================================== */
.promo-info-section {
    background: var(--primary-teal);
    padding: 0 0 20px;
    position: relative;
    z-index: 20;
    overflow: visible;
}

/* Zigzag do TOPO (dentes verdes subindo na imagem - picos médios) */
.zigzag-hero-promo {
    width: 100%;
    height: 28px;
    background-color: var(--primary-teal);
    clip-path: polygon(0 100%, 5% 0, 10% 100%, 15% 0, 20% 100%, 25% 0, 30% 100%, 35% 0, 40% 100%, 45% 0, 50% 100%, 55% 0, 60% 100%, 65% 0, 70% 100%, 75% 0, 80% 100%, 85% 0, 90% 100%, 95% 0, 100% 100%);
    position: absolute;
    top: -27px;
    left: 0;
    z-index: 5;
}

.chevron-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 20px 0 40px;
    transform: translateY(-160px); /* Move os selos para cima sem esticar a div */
    position: relative;
    z-index: 30;
}

.chevron {
    height: 180px;
    display: flex;
    align-items: center;
    padding: 0 80px;
    min-width: 500px;
}

.chevron-cream {
    background-color: var(--bg-cream);
    /* Clip-path com picos de zig-zag mais rasos nas laterais */
    clip-path: polygon(2.5% 0%, 97.5% 0%, 100% 16.6%, 97.5% 33.3%, 100% 50%, 97.5% 66.6%, 100% 83.3%, 97.5% 100%, 2.5% 100%, 0% 83.3%, 2.5% 66.6%, 0% 50%, 2.5% 33.3%, 0% 16.6%);
    color: var(--primary-teal);
}

.chevron-purple {
    background-color: var(--accent-purple);
    /* Clip-path com picos de zig-zag mais rasos nas laterais */
    clip-path: polygon(2.5% 0%, 97.5% 0%, 100% 16.6%, 97.5% 33.3%, 100% 50%, 97.5% 66.6%, 100% 83.3%, 97.5% 100%, 2.5% 100%, 0% 83.3%, 2.5% 66.6%, 0% 50%, 2.5% 33.3%, 0% 16.6%);
    padding: 20px 80px 20px 70px;
    color: white;
}

/* Chevron — classes internas (substituem inline styles para responsividade) */
.chv-label {
    font-size: clamp(1.4rem, 1.8vw, 1.8rem);
    font-weight: 800;
    color: #158888;
    display: block;
    letter-spacing: -1px;
    line-height: 1;
}
.chv-values {
    font-size: clamp(2.8rem, 4vw, 4.2rem);
    font-weight: 900;
    line-height: 0.85;
    white-space: nowrap;
}
.chv-value-purple { color: #5d2183; }
.chv-value-teal   { color: #158888; }

.chv-purple-inner {
    display: flex;
    align-items: center;
}
.chv-left { text-align: left; line-height: 0.8; }
.chv-marcas {
    font-size: clamp(2.4rem, 3.5vw, 3.5rem);
    font-weight: 900;
    color: var(--blue-light);
    display: block;
}
.chv-aceleradoras {
    font-size: clamp(1.2rem, 1.8vw, 1.8rem);
    font-weight: 700;
    color: white;
    text-transform: uppercase;
}
.chv-equal {
    font-size: clamp(2.4rem, 3.5vw, 3.5rem);
    font-weight: 900;
    color: white;
    margin: 0 12px;
    flex-shrink: 0;
}
.chv-right { text-align: left; line-height: 0.85; }
.chv-mais-selos {
    font-size: clamp(1.5rem, 2.1vw, 2.1rem);
    font-weight: 900;
    color: var(--blue-light);
    display: block;
    white-space: nowrap;
}

/* Products row — overflow:visible para não cortar os stamp-badges absolutos */
.section-title-container {
    margin-bottom: 140px !important;
}

.products-row {
    overflow: visible;
    margin-top: 20px;
}

.promo-copy-text {
    color: white;
    font-size: 1.8rem;
    font-weight: 400;
    margin-top: -100px;
    text-align: center;
}

.small-purple-zigzag {
    width: 120px;
    height: 22px; /* Meio-termo de espessura */
    background-color: #5d2183;
    /* Traço ajustado para o meio-termo */
    clip-path: polygon(0% 35%, 15% -5%, 30% 35%, 45% -5%, 60% 35%, 75% -5%, 90% 35%, 100% 15%, 100% 65%, 90% 105%, 75% 65%, 60% 105%, 45% 65%, 30% 105%, 15% 65%, 0% 105%);
    margin: 22px auto;
}

/* ==========================================================================
   PRODUCTS (Conheça NOSSA COLEÇÃO)
   ========================================================================== */
/* Zigzag da BASE (dentes médios) */
.zigzag-promo-products {
    width: 100%;
    height: 30px;
    background-color: var(--bg-cream);
    clip-path: polygon(0 100%, 5% 0, 10% 100%, 15% 0, 20% 100%, 25% 0, 30% 100%, 35% 0, 40% 100%, 45% 0, 50% 100%, 55% 0, 60% 100%, 65% 0, 70% 100%, 75% 0, 80% 100%, 85% 0, 90% 100%, 95% 0, 100% 100%);
    position: absolute;
    bottom: -1px; /* Ajustado para cobrir a linha verde */
    left: 0;
    z-index: 5;
}

.products-section { 
    padding: 40px 0 200px; 
    background-color: var(--bg-cream);
}

.section-main-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-purple);
    text-align: center;
}

.product-card {
    background: var(--primary-teal);
    border-radius: 35px;
    margin-bottom: 280px;
    position: relative;
    padding: 40px 40px 10px;
    height: 480px;
    display: flex;
    flex-direction: column;
    text-align: center;
    overflow: visible;
}

.product-name {
    color: white;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
}

.price-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

.price-group {
    text-align: left;
    display: flex;
    flex-direction: column;
    margin-bottom: 5px;
}

.price-label { font-size: 1.1rem; font-weight: 400; line-height: 1; }
.price-value-container { display: flex; align-items: flex-start; }
.price-currency { font-size: 1rem; font-weight: 800; margin-right: 5px; margin-top: 8px; }
.price-amount { font-size: 3.5rem; font-weight: 800; line-height: 1; }

.stamp-badge {
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-purple);
    width: 160px;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 30;
    clip-path: polygon(50% 0%, 61% 6%, 72% 0%, 78% 11%, 90% 10%, 91% 22%, 100% 28%, 95% 39%, 100% 50%, 95% 61%, 100% 72%, 91% 78%, 90% 90%, 78% 89%, 72% 100%, 61% 94%, 50% 100%, 39% 94%, 28% 100%, 22% 89%, 10% 90%, 9% 78%, 0% 72%, 5% 61%, 0% 50%, 5% 39%, 0% 28%, 9% 22%, 10% 10%, 22% 11%, 28% 0%, 39% 6%);
}

.stamp-badge .number { font-size: 4.5rem; font-weight: 900; line-height: 0.8; }
.stamp-badge .text { font-size: 1.4rem; font-weight: 800; letter-spacing: 1px; }

.product-image-container {
    margin-top: auto;
    position: relative;
    width: 100%;
}

.product-image {
    width: 80%;
    max-width: 380px; /* Limite para não crescer infinito em telas largas */
    height: auto;
    position: absolute;
    bottom: -160px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    transition: var(--transition-smooth);
}

.product-image.pote-370 { width: 70%; bottom: -140px; }
.product-image.pote-530 { width: 80%; bottom: -150px; }
.product-image.pote-630 { width: 85%; bottom: -160px; }
.product-image.pote-1040 { width: 90%; bottom: -170px; }
.product-image.pote-1500 { width: 100%; bottom: -180px; }

.product-image.tall {
    width: 30%;
    bottom: -220px;
}

.product-card:hover .product-image {
    transform: translateX(-50%) translateY(-10px) scale(1.05);
}

.stock-label-vertical {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    color: white;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 1px;
    opacity: 0.8;
    white-space: nowrap;
    z-index: 5;
}

/* ==========================================================================
   GALLERY / VIDEO
   ========================================================================== */
.gallery-section {
    padding: 60px 0;
    background: var(--bg-cream);
}

.gallery-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item.side {
    width: 220px;
    height: 320px;
}

.gallery-item.center {
    flex-grow: 1;
    max-width: 600px;
    height: 400px;
    position: relative;
    cursor: pointer;
}

/* ==========================================================================
   SWIPER GALLERY
   ========================================================================== */
.gallery-section {
    padding: 60px 0;
    background: var(--bg-cream);
    overflow: hidden;
}

.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 80px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15); /* Sombra elegante */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.75); /* Laterais um pouco maiores */
    opacity: 0.5;
}

.swiper-slide-active {
    transform: scale(1.05) !important; /* Centro menos exagerado */
    opacity: 1 !important;
    z-index: 10;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Volta a preencher sem as bordas de fundo */
}

@media (max-width: 767px) {
    .swiper-slide {
        height: 350px;
    }
}

/* ==========================================================================
   BRANDS SECTION
   ========================================================================== */
.brands-section {
    background: var(--secondary-teal);
    padding: 120px 0 150px;
    position: relative;
}

.zigzag-divider-brands {
    width: 100%;
    height: 50px;
    background-color: var(--secondary-teal);
    clip-path: polygon(0 0, 5% 40px, 10% 0, 15% 40px, 20% 0, 25% 40px, 30% 0, 35% 40px, 40% 0, 45% 40px, 50% 0, 55% 40px, 60% 0, 65% 40px, 70% 0, 75% 40px, 80% 0, 85% 40px, 90% 0, 95% 40px, 100% 0, 100% 100%, 0 100%);
    position: absolute;
    top: -45px;
    left: 0;
}

.brand-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
}

.brand-card {
    background: white;
    border-radius: 12px;
    height: 140px;
    width: calc(20% - 15px); /* No máximo 5 por linha */
    min-width: 180px;
    display: flex;
    flex-direction: column;
    padding: 10px;
    position: relative;
    justify-content: space-between;
    align-items: center;
}

.brand-logo-area {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.brand-logo-area img {
    max-width: 90%;
    max-height: 60px;
    object-fit: contain;
}

.brand-points-pill {
    background: var(--primary-teal);
    color: white;
    border-radius: 6px;
    padding: 2px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    text-align: center;
    width: 80%;
}

/* ==========================================================================
   FOOTER / CTA (QR CODE)
   ========================================================================== */
.footer-cta-container {
    margin-top: 100px;
    display: flex;
    justify-content: center;
    position: relative;
}

.footer-cta-box {
    border: 2px solid white;
    border-radius: 20px;
    padding: 30px 100px 30px 40px;
    display: flex;
    align-items: center;
    position: relative;
    max-width: 600px;
    width: 100%;
}

.footer-cta-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.1;
}

.qr-code-overlap {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border-radius: 15px;
    padding: 8px;
    width: 160px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 10;
}

.qr-code-overlap img {
    width: 100%;
    display: block;
}

footer {
    background: var(--footer-teal);
    color: white;
    padding: 20px 0 60px;
    margin-top: -2px;
}

.copyright {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
    margin-top: 40px;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
/* ==========================================================================
   RESPONSIVIDADE — TABLET E MOBILE
   Adicione este bloco ao FINAL do seu arquivo CSS existente.
   Nenhuma regra desktop foi alterada.
   ========================================================================== */

/* ==========================================================================
   TABLET  (≤ 1024px)
   ========================================================================== */
@media (max-width: 1024px) {

  /* HEADER */
  .header .nav-link {
    font-size: 0.85rem;
    margin: 0 7px;
  }

  /* HERO */
  .hero-section {
    min-height: auto;
    padding: 30px 0 280px;
  }

  .hero-title    { font-size: 4.5rem; }
  .hero-subtitle { font-size: 2rem; }

  /* CHEVRONS */
  .chevron-container {
    flex-direction: column;
    gap: 20px;
    transform: translateY(-160px);
    align-items: center;
  }

  .chevron {
    min-width: unset;
    width: 90%;
    max-width: 680px;
    height: auto;
    padding: 25px 40px;
  }

  .chevron-purple {
    padding: 25px 40px;
  }

  .promo-main-text  { font-size: 3rem; }
  .promo-label      { font-size: 1.4rem; }
  .promo-marcas-title { font-size: 2.6rem; }
  .promo-aceleradoras-sub { font-size: 1.4rem; }
  .promo-equal-sign { font-size: 2.8rem; }
  .promo-right-text { font-size: 1.7rem; }

  .promo-copy-text {
    margin-top: -60px;
    font-size: 1.5rem;
    padding: 0 20px;
  }

  /* PRODUCTS */
  .section-main-title { font-size: 3.2rem; }

  .product-card {
    height: 420px;
    margin-bottom: 300px;
  }

  .stamp-badge {
    width: 130px;
    height: 130px;
    left: -45px;
  }
  .stamp-badge .number { font-size: 3.5rem; }
  .stamp-badge .text   { font-size: 1.1rem; }

  .product-image.tall {
    bottom: -240px !important;
    width: 25% !important;
  }

  /* BRANDS */
  .brand-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* FOOTER CTA */
  .footer-cta-box {
    padding: 30px 120px 30px 30px;
  }

  /* Zigzags Invertidos com base 100% sólida no Tablet */
  .zigzag-hero-promo, .zigzag-promo-products, .zigzag-divider-brands {
    clip-path: polygon(0% 100%, 100% 100%, 100% 0%, 95% 80%, 90% 0%, 85% 80%, 80% 0%, 75% 80%, 70% 0%, 65% 80%, 60% 0%, 55% 80%, 50% 0%, 45% 80%, 40% 0%, 35% 80%, 30% 0%, 25% 80%, 20% 0%, 15% 80%, 10% 0%, 5% 80%, 0% 0%) !important;
    margin-bottom: -2px !important;
    bottom: 0 !important;
  }
  .small-purple-zigzag {
    clip-path: polygon(0% 35%, 25% 5%, 50% 35%, 75% 5%, 100% 35%, 100% 65%, 75% 95%, 50% 65%, 25% 95%, 0% 65%) !important;
  }
}

/* ==========================================================================
   MOBILE  (≤ 767px)
   ========================================================================== */
@media (max-width: 767px) {

  /* HEADER */
  .header {
    padding: 12px 0;
  }

  .header .container {
    justify-content: center !important;
  }

  .header .logo img { height: 44px; }

  /* HERO */
  .hero-section {
    margin-top: 60px;
    min-height: auto;
    padding: 0 !important;
    width: 100% !important;
    overflow: hidden;
  }

  .hero-bg-img {
    width: 100vw !important;
    max-width: none !important;
    position: relative;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    display: block;
    border: none;
  }

  /* CHEVRONS — Sem clip-path no mobile para não cortar o texto */
  .chevron-container {
    flex-direction: column;
    gap: 12px;
    transform: none !important;
    margin-top: 10px;
    padding: 0 12px;
    align-items: stretch;
    width: 100%;
    box-sizing: border-box;
  }

  .chevron {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    padding: 25px 35px !important;
    margin: 0;
    clip-path: polygon(3% 0%, 97% 0%, 100% 16.6%, 97% 33.3%, 100% 50%, 97% 66.6%, 100% 83.3%, 97% 100%, 3% 100%, 0% 83.3%, 3% 66.6%, 0% 50%, 3% 33.3%, 0% 16.6%) !important;
    border-radius: 0 !important;
    box-sizing: border-box;
  }

  .chevron-cream {
    background-color: var(--bg-cream);
  }

  .chevron-purple {
    background-color: var(--accent-purple);
    color: white;
  }

  /* Texto interno dos chevrons — classes */
  .chv-label       { font-size: 0.95rem !important; letter-spacing: 0; }
  .chv-values      { font-size: 2.4rem !important; white-space: nowrap !important; line-height: 1 !important; }
  .chv-marcas      { font-size: 2.2rem !important; }
  .chv-aceleradoras{ font-size: 1.1rem !important; }
  .chv-equal       { display: none !important; } /* Oculto no mobile para economizar espaço */
  .chv-mais-selos  { font-size: 1.2rem !important; white-space: nowrap !important; display: inline !important; }
  .chv-right { white-space: nowrap; text-align: center; }

  /* Chevron purple: layout em coluna centralizado no mobile */
  .chv-purple-inner {
    flex-direction: column !important;
    align-items: center !important;
    gap: 2px;
    width: 100%;
    text-align: center;
  }

  .chevron-purple .chv-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    line-height: 1;
    text-align: center;
    width: 100%;
  }

  .chevron-purple .chv-left .chv-marcas {
    display: block !important;
    text-align: center;
  }

  .chevron-purple .chv-aceleradoras {
    text-align: center;
    display: block !important;
  }

  /* = visível e centralizado */
  .chv-equal {
    display: block !important;
    text-align: center;
    margin: 2px 0 !important;
    font-size: 1.6rem !important;
  }

  .chevron-purple .chv-right {
    min-width: 0;
    text-align: center;
    width: 100%;
  }

  /* Remove o "= " adicionado via ::before (agora o = vem do chv-equal) */
  .chevron-purple .chv-right::before {
    content: "" !important;
  }

  .promo-copy-text {
    margin-top: 8px;
    font-size: 1.1rem;
    padding: 0 20px;
  }

  .small-purple-zigzag { margin: 14px auto; }

  /* SECTION TITLE */
  .section-main-title { font-size: 2.5rem; }

  /* PRODUCTS */
  .products-section { padding: 90px 0 100px; }

  .section-title-container { margin-bottom: 80px !important; }
  .products-row { margin-top: 10px; }

  .product-card {
    height: auto;
    min-height: 360px;
    margin-bottom: 240px;
    padding: 25px 20px 10px;
    border-radius: 22px;
  }

  /* Badge acima do card no mobile */
  .stamp-badge {
    position: absolute;
    left: 50%;
    top: -55px;
    transform: translateX(-50%);
    width: 110px;
    height: 110px;
  }

  .stamp-badge .number { font-size: 2.8rem; }
  .stamp-badge .text   { font-size: 0.95rem; }

  .product-name  { font-size: 1.3rem; margin-top: 30px; }
  .price-amount  { font-size: 2.6rem; }
  .price-label   { font-size: 0.95rem; }

  .product-image        { width: 70%; bottom: -120px; }
  .product-image.tall   { width: 22%; bottom: -160px; }
  .product-image.pote-370  { width: 60%; bottom: -110px; }
  .product-image.pote-530  { width: 68%; bottom: -115px; }
  .product-image.pote-630  { width: 72%; bottom: -120px; }
  .product-image.pote-1040 { width: 78%; bottom: -130px; }
  .product-image.pote-1500 { width: 88%; bottom: -140px; }

  /* GALLERY */
  .gallery-section { padding: 40px 0; }

  .gallery-grid {
    flex-direction: column;
    gap: 12px;
    padding: 0 15px;
  }

  .gallery-item.side   { width: 100%; height: 200px; }
  .gallery-item.center { width: 100%; max-width: 100%; height: 240px; }

  /* BRANDS */
  .brands-section { padding: 80px 0 120px; }

  .brand-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 10px;
  }

  .brand-card { 
    height: 100px; 
    width: calc(50% - 10px) !important;
    min-width: 0 !important;
    max-width: 160px;
  }

  /* FOOTER CTA — QR Code visível abaixo da caixa */
  .footer-cta-container {
    margin-top: 30px;
    padding: 0 20px;
    padding-bottom: 55px;
  }

  .footer-cta-box {
    flex-direction: column;
    padding: 20px 20px 80px;
    text-align: center;
    overflow: visible;
  }

  .footer-cta-text { font-size: 1.2rem; }

  .qr-code-overlap {
    position: absolute;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    bottom: -65px;
    width: 130px;
  }

  footer {
    padding: 55px 0 25px;
  }
  .copyright { font-size: 0.78rem; }

  /* Previne overflow horizontal — exclui products-section para não cortar badges absolutos */
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }

  .container, .hero-section,
  .gallery-section, footer {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  .promo-info-section, 
  .brands-section, 
  .brands-section .container, 
  .brand-grid {
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
  }

  /* Zigzags no Mobile — Ajuste fino para não quebrar posicionamento */
  .zigzag-hero-promo, .zigzag-divider-brands {
    top: -9px !important;
    height: 10px !important;
    clip-path: polygon(0% 100%, 5% 0%, 10% 100%, 15% 0%, 20% 100%, 25% 0%, 30% 100%, 35% 0%, 40% 100%, 45% 0%, 50% 100%, 55% 0%, 60% 100%, 65% 0%, 70% 100%, 75% 0%, 80% 100%, 85% 0%, 90% 100%, 95% 0%, 100% 100%) !important;
  }

  .zigzag-promo-products {
    bottom: -1px !important;
    height: 10px !important;
    background-color: var(--bg-cream) !important;
    clip-path: polygon(0 100%, 5% 0, 10% 100%, 15% 0, 20% 100%, 25% 0, 30% 100%, 35% 0, 40% 100%, 45% 0, 50% 100%, 55% 0, 60% 100%, 65% 0, 70% 100%, 75% 0, 80% 100%, 85% 0, 90% 100%, 95% 0, 100% 100%) !important;
  }

  .small-purple-zigzag {
    clip-path: polygon(0% 40%, 50% 10%, 100% 40%, 100% 60%, 50% 90%, 0% 60%) !important;
    height: 14px !important;
  }
}

/* ==========================================================================
   MOBILE PEQUENO  (≤ 400px)
   ========================================================================== */
@media (max-width: 400px) {

  .section-main-title { font-size: 1.7rem; }

  .chevron {
    padding: 14px 16px !important;
  }

  .brand-grid { grid-template-columns: repeat(2, 1fr); }

  .product-card { min-height: 320px; margin-bottom: 200px; }

  .stamp-badge { width: 95px; height: 95px; top: -48px; }
  .stamp-badge .number { font-size: 2.4rem; }
  .stamp-badge .text   { font-size: 0.82rem; }

  .price-amount { font-size: 2.2rem; }
}