:root {
      --bg-dark: #050816;
      --bg-light: #ffffff;
      --accent: #4f46e5;
      --accent-soft: rgba(215, 214, 231, 0.1);
      --text-main: #f9fafb;
      --text-muted: #000000;
      --card-bg: #111827;
      --border-subtle: #ffee00;
      --radius-xl: 18px;
      --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.4);
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .page-wrapper {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    main {
      flex: 1;
    }

    section {
      padding: 2rem 1.5rem;
    }

    .section-inner {
      max-width: 1120px;
      margin: 0 auto;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.25rem 0.8rem;
      border-radius: 999px;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: #e5e7eb;
      background: rgba(15, 23, 42, 0.85);
      border: 1px solid rgba(148, 163, 184, 0.35);
      margin-bottom: 1rem;
    }

    .section-label-dot {
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: #ffe600;
      box-shadow: 0 0 10px rgba(255, 238, 0, 0.8);
    }

    .section-title {
      font-size: clamp(1.9rem, 3vw + 0.5rem, 2.5rem);
      margin-top: 1.2rem;
      margin-bottom: 0.7rem;
      font-weight: 700;
      letter-spacing: -0.03em;
    }
  

    .home__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 750px;
    object-fit: cover;
    object-position: center;
    z-index: -99;
}

    /* SECTION 1: HERO WITH SWIPER */
    .hero-grid {
      margin-top: 2.5rem;
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      gap: 2rem;
      align-items: center;
    }
    

    .hero-highlight {
      font-size: 0.9rem;
      color: #000;
      max-width: 460px;
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
      margin-top: 2rem;
    }

    .btn-pri {
      padding: 0.8rem 1.5rem;
      border-radius: 999px;
      border: none;
      background: rgba(0, 0, 0, 0.9);
      color: #ffffff;
      font-weight: 600;
      font-size: 0.95rem;
      cursor: pointer;
      box-shadow: 0 16px 35px rgba(255, 251, 0, 0.45);
      transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
    }

    .btn-pri:hover {
      transform: translateY(-1px);
      box-shadow: 0 18px 40px rgba(235, 222, 37, 0.55);
      background: rgb(252, 255, 62);
      color: #000;
    }

    .btn-ghost {
      padding: 0.8rem 1.4rem;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.5);
      background: rgba(0, 0, 0, 0.9);
      color: #fff;
      font-weight: 500;
      font-size: 0.92rem;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      transition: background 0.15s ease-out, border 0.15s ease-out;
    }


    .about-card.image-card {
      padding: 0;                 
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

 
    .about-image {
      width: 100%;
      height: auto;
      object-fit: contain;        
      display: block;
      border-radius: var(--radius-xl);
    }


    .btn-ghost:hover {
      background: rgb(252, 255, 62);
      color: #000;
    }

    .hero-swiper-wrapper {
  border-radius: 1.5rem;
  background: #ffffff; /* matches your white site background */
  padding: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-soft);
}

/* Swiper container: let height be flexible */
.swiper.hero-swiper {
  width: 100%;
  height: auto;           /* IMPORTANT: no fixed 100% height */
  border-radius: 1.2rem;
  overflow: hidden;
}

/* Each slide adapts to the image */
.hero-slide {
  position: relative;
  width: 100%;
  height: auto;           /* IMPORTANT */
  display: block;
  padding: 0;
  background: #ffffff;    /* no background image anymore */
}

/* Remove old dark overlay */
.hero-slide::before {
  content: none;          /* disables gradient overlay */
}

/* If you kept "no-overlay" class, still safe: */
.hero-slide.no-overlay::before {
  display: none;
}

/* Responsive image inside slide */
.hero-image {
  width: 100%;
  height: auto;           /* keeps proportion on all screens */
  display: block;
  object-fit: contain;    /* or "cover" if you prefer filling the area */
}

/* Pagination stays the same */
.swiper-pagination-bullet {
  background: rgba(148, 163, 184, 0.8);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: linear-gradient(135deg, #4f46e5, #22d3ee);
  width: 20px;
  border-radius: 999px;
}


    /* SECTION 2: ABOUT / HIGHLIGHTS */
    .about-grid {
      margin-top: 2.5rem;
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
      gap: 2.2rem;
      align-items: start;
    }

    .about-text {
      color: var(--text-muted);
      font-size: 0.95rem;
      max-width: 540px;
    }

    .about-highlights {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 1rem;
      margin-top: 1.75rem;
    }

    .about-card {
      border-radius: var(--radius-xl);
      border: 1px solid var(--border-subtle);
      padding: 1rem 1.1rem;
      box-shadow: 0 16px 30px rgba(15, 23, 42, 0.7);
    }

    .about-card-title {
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 0.3rem;
    }

    .about-card-text {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    .about-tag {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: #000;
      margin-bottom: 0.8rem;
    }

    .about-list {
      list-style: none;
      padding: 0;
      margin-top: 0.3rem;
    }

    .about-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
      font-size: 0.85rem;
      margin-bottom: 0.5rem;
    }

    .about-list-bullet {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      margin-top: 0.21rem;
      background: radial-gradient(circle at 30% 20%, #fbff00, #fffb00);
      box-shadow: 0 0 12px rgba(129, 140, 248, 0.9);
    }

    .about-list-text{
      color: #000000be;
    }

    /* SECTION 3: PRODUCTS GRID */
    .products-header {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: flex-end;
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .products-title {
      text-align: center;
      font-size: 1.4rem;
      font-weight: 600;
      margin-bottom: 2rem;
      letter-spacing: -0.02em;
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.4rem;
    }

    @media (max-width: 900px) {
      .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 600px) {
      .products-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .product-card {
      border-radius: 1rem;
      border: 1px solid var(--border-subtle);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      box-shadow: 0 16px 30px rgba(15, 23, 42, 0.7);
      transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, border-color 0.15s ease-out;
    }

    .product-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 22px 40px rgba(15, 23, 42, 0.9);
      border-color: rgba(129, 140, 248, 0.8);
    }

    .product-image-wrapper {
      position: relative;
      padding: 1.1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 180px;
    }

    .product-image-wrapper span {
      position: absolute;
      right: 0.9rem;
      top: 0.9rem;
      font-size: 0.7rem;
      padding: 0.25rem 0.55rem;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.9);
      border: 1px solid rgba(148, 163, 184, 0.55);
      text-transform: uppercase;
      letter-spacing: 0.09em;
      color: #e5e7eb;
    }

    .product-image {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: contain;
    }

    .product-body {
      padding: 1rem 1rem 1.1rem;
    }

    .product-name {
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 0.3rem;
    }

    .product-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-top: 0.4rem;
    }

    .product-price {
      font-weight: 600;
      color: #e5e7eb;
    }



  

    /* RESPONSIVE BREAKPOINTS */
    @media (max-width: 960px) {
      .hero-grid,
      .contact-wrapper {
        grid-template-columns: minmax(0, 1fr);
      }

      .hero-grid, .about-grid {
    display: grid; /* keep grid */
    grid-template-columns: minmax(0, 1fr); /* 1 column */
    justify-items: center; /* center children horizontally */
    row-gap: 2.5rem;
  }

  .hero-swiper-wrapper {
    width: 100%;
    max-width: 500px;  /* limit size but allow shrinking */
    margin: 0 auto;
  }
    }

    @media (max-width: 768px) {
      section {
        padding-inline: 1.1rem;
      }
    }

    @media (max-width: 480px) {
      .section-title {
        font-size: 1.6rem;
      }

      .section-subtitle, .hero-highlight{
        text-align: center;
      }

      .hero-buttons{
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .hero-stat {
        min-width: 130px;
      }

      .form-row-2 {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    /* ====== CONTAINER GERAL ====== */
/* ====== CONTACT SECTION (AMARELO + PRETO + GRADIENTE PREMIUM) ====== */
.contact-home {
  padding: 5.2rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.contact-home::after {
  /* textura suave (brilho diagonal) */
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(
    120deg,
    rgba(255, 208, 0, 0.10),
    rgba(255, 255, 255, 0) 35%,
    rgba(0, 0, 0, 0) 65%,
    rgba(255, 183, 0, 0.08)
  );
  transform: rotate(10deg);
  pointer-events: none;
  z-index: 0;
}

.contact-home-inner {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ====== HEADER ====== */
.contact-home-header {
  text-align: center;
  margin-bottom: 2.8rem;
}

.contact-home-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 999px;
  background: rgba(255, 208, 0, 0.14);
  border: 1px solid rgba(255, 208, 0, 0.35);
  color: #0b0f19;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.contact-home-title {
  margin-top: 1rem;
  font-size: 2.15rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0b0f19;
}

.contact-home-subtitle {
  margin-top: 0.7rem;
  font-size: 1rem;
  color: #475569;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ====== GRID ====== */
.contact-home-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2.2rem;
  align-items: stretch;
}

/* ====== LEFT SIDE ====== */
.contact-home-info {
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
}

/* Card premium (glass + borda + brilho no hover) */
.contact-home-card {
  display: flex;
  gap: 1rem;
  padding: 1.2rem 1.25rem;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.18);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  position: relative;
  overflow: hidden;
}

/* Barra lateral (accent) */
.contact-home-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffd400, #ffb300, #ff8a00);
  opacity: 0.9;
}

/* Efeito "shine" no hover */
.contact-home-card::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 35%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0) 65%
  );
  transform: translateX(-40%) rotate(10deg);
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.6s ease;
}

.contact-home-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 208, 0, 0.55);
  box-shadow: 0 26px 90px rgba(15, 23, 42, 0.14);
}

.contact-home-card:hover::after {
  opacity: 1;
  transform: translateX(40%) rotate(10deg);
}

/* Ícone com gradiente (amarelo -> dourado -> laranja suave) */
.contact-home-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #0b0f19;
  border: 1px solid rgba(15, 23, 42, 0.18);
  box-shadow: 0 18px 45px rgba(255, 179, 0, 0.28);
  position: relative;
  z-index: 1;
}

.contact-home-icon i {
  font-size: 22px;
}

/* Texto do card */
.contact-home-card-title {
  font-size: 1rem;
  font-weight: 900;
  color: #0b0f19;
  margin-bottom: 0.25rem;
  position: relative;
  z-index: 1;
}

.contact-home-card-text {
  font-size: 0.88rem;
  color: #475569;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

/* Link com underline animado + gradiente */
.contact-home-link {
  font-size: 0.93rem;
  font-weight: 900;
  color: #0b0f19;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-bottom: 3px;
  z-index: 1;
}

.contact-home-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
  background: linear-gradient(90deg, #ffd400, #ffb300, #ff8a00);
  border-radius: 999px;
}

.contact-home-card:hover .contact-home-link::after {
  transform: scaleX(1);
}

/* Nota (com borda e glow discreto) */
.contact-home-note {
  margin-top: 0.35rem;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px dashed rgba(15, 23, 42, 0.22);
  color: #0b0f19;
  font-size: 0.85rem;
  display: flex;
  gap: 0.55rem;
  align-items: center;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}

/* ====== FORM SIDE ====== */
.contact-home-form {
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.22);
  background: rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 110px rgba(15, 23, 42, 0.14);
  overflow: hidden;
  position: relative;
}

/* topo premium: preto + faixa gradiente */
.contact-home-form::before {
  content: "";
  display: block;
  height: 64px;
  background:
    linear-gradient(90deg, #0b0f19 0%, #0b0f19 58%, rgba(11, 15, 25, 0.92) 100%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.20);
}

/* título do topo do form */
.contact-home-form::after {
  content: "Envie uma mensagem";
  position: absolute;
  left: 18px;
  top: 18px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.01em;
}

/* faixa gradiente no canto (detalhe) */
.contact-home-form .form-accent {
  display: none;
}

.contact-home-form > * {
  padding: 1.7rem 1.7rem 1.9rem;
}

/* Inputs */
.contact-home-form input,
.contact-home-form textarea,
.contact-home-form select {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.28);
  background: rgba(255, 255, 255, 0.94);
  color: #0b0f19;
  outline: none;
  transition: box-shadow 0.18s ease, border-color 0.18s ease, transform 0.06s ease;
  font-family: inherit;
}

.contact-home-form input:focus,
.contact-home-form textarea:focus,
.contact-home-form select:focus {
  border-color: rgba(255, 208, 0, 0.95);
  box-shadow: 0 0 0 4px rgba(255, 208, 0, 0.22);
}

/* Botão enviar: preto + borda gradiente "neon" */
.contact-home-form button,
.contact-home-form input[type="submit"] {
  background: #0b0f19;
  color: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.35);
  border-radius: 14px;
  padding: 0.98rem 1.25rem;
  font-size: 0.98rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
  position: relative;
  overflow: hidden;
}

.contact-home-form button::before,
.contact-home-form input[type="submit"]::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #ffd400, #ffb300, #ff8a00);
  opacity: 0.0;
  transition: opacity 0.18s ease;
}

.contact-home-form button span,
.contact-home-form input[type="submit"] {
  position: relative;
  z-index: 1;
}

.contact-home-form button:hover,
.contact-home-form input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 65px rgba(15, 23, 42, 0.22);
  opacity: 0.98;
}

.contact-home-form button:hover::before,
.contact-home-form input[type="submit"]:hover::before {
  opacity: 0.12; /* brilho gradiente por cima */
}

/* ====== RESPONSIVE ====== */
@media (max-width: 960px) {
  .contact-home-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-home-form {
    order: 1;
  }

  .contact-home-info {
    order: 2;
  }
}

@media (max-width: 640px) {
  .contact-home {
    padding: 3.9rem 1.1rem;
  }

  .contact-home-title {
    font-size: 1.75rem;
  }

  #hero {
  min-height: 70vh;
  background: url(../img/fundo.webp) no-repeat;
  background-size:100% auto;      /* 👈 DIMINUI A LARGURA */
  background-position: center top;
}

.home__bg{
  display: none;
}


  .contact-home-form::after {
    top: 16px;
    left: 16px;
  }

  .contact-home-form > * {
    padding: 1.35rem 1.2rem 1.55rem;
  }
}



        /* SECTION */
.whatsapp-floating-section {
  position: relative;
  z-index: 9999;
}

/* CONTAINER FIXO */
.whatsapp-floating-container {
  position: fixed;
  bottom: 22px;
  right: 22px;
}

/* BOTÃO FLUTUANTE */
.whatsapp-floating-btn {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.22);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.35s ease;
  animation: pulse 2s infinite ease-in-out;
}

/* ÍCONE */
.whatsapp-icon {
  width: 26px;
  height: 26px;
  fill: #ffffff;
  pointer-events: none;
}

/* HOVER */
.whatsapp-floating-btn:hover {
  transform: translateY(0px) scale(1.07);
  box-shadow: 0 14px 32px rgba(0,0,0,0.28);
}

/* QUANDO APARECE */
.whatsapp-floating-btn.whatsapp-visible {
  opacity: 1;
  transform: translateY(0);
}

/* PULSE MODERNO */
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
}

/* PREVIEW DO CHAT */
.whatsapp-preview {
  position: absolute;
  right: 70px;
  bottom: 10px;
  width: 280px;
  max-width: calc(100vw - 100px);
  background: #0f172a;
  color: #e5e7eb;
  border-radius: 16px;
  padding: 1rem 1rem 0.9rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.6);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

/* Estado visível do preview */
.whatsapp-preview.preview-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Cabeçalho do preview */
.whatsapp-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  margin-bottom: 0.45rem;
}

.whatsapp-preview-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.8);
  margin-right: 0.35rem;
}

.whatsapp-preview-title {
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex: 1;
}

/* Botão fechar */
.whatsapp-preview-close {
  background: transparent;
  border: none;
  color: #9ca3af;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0;
}

.whatsapp-preview-close:hover {
  color: #e5e7eb;
}

/* Texto do preview */
.whatsapp-preview-text {
  font-size: 0.82rem;
  color: #cbd5f5;
  line-height: 1.4;
  margin-bottom: 0.7rem;
}

/* CTA do preview */
.whatsapp-preview-cta {
  width: 100%;
  border-radius: 999px;
  border: none;
  padding: 0.55rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 0.1rem;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: 0.18s ease;
}

.whatsapp-preview-cta::after {
  content: "↗";
  font-size: 0.8rem;
}

.whatsapp-preview-cta:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

/* Setinha do balão */
.whatsapp-preview-arrow {
  position: absolute;
  right: 18px;
  bottom: -7px;
  width: 14px;
  height: 14px;
  background: #0f172a;
  border-left: 1px solid rgba(148, 163, 184, 0.6);
  border-bottom: 1px solid rgba(148, 163, 184, 0.6);
  transform: rotate(45deg);
}

/* RESPONSIVO */
@media (max-width: 600px) {
  .whatsapp-floating-container {
    bottom: 18px;
    right: 18px;
  }

  .whatsapp-floating-btn {
    width: 50px;
    height: 50px;
  }

  .whatsapp-icon {
    width: 24px;
    height: 24px;
  }

  .whatsapp-preview {
    right: 10px;
    bottom: 70px;
    width: calc(100vw - 40px);
  }

  .whatsapp-preview-arrow {
    right: 24px;
  }
}

/* ====== SOCIAL SECTION (mais moderno) ====== */
.social-section {
  margin-top: -5rem;
  background:
    radial-gradient(1000px 500px at 15% 10%, rgba(255, 208, 0, 0.12), transparent 60%),
    radial-gradient(900px 520px at 90% 20%, rgba(15, 23, 42, 0.08), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.social-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.social-header {
  text-align: center;
  margin-bottom: 2.6rem;
}

.social-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 999px;
  background: rgba(255, 208, 0, 0.14);
  border: 1px solid rgba(255, 208, 0, 0.35);
  color: #0b0f19;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.social-title {
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0b0f19;
}

.social-subtitle {
  margin-top: 0.6rem;
  font-size: 0.98rem;
  color: #475569;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* GRID */
.social-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  max-width: 620px;
  margin: 0 auto;
}

/* CARD BASE */
.social-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  border-radius: 20px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  overflow: hidden;
  color: #0b0f19;
}

/* Accent bar lateral */
.social-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffd400, #ffb300, #ff8a00);
  opacity: 0.9;
}

/* Shine hover */
.social-card::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 35%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0) 65%
  );
  transform: translateX(-45%) rotate(10deg);
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.65s ease;
}

/* Hover */
.social-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 208, 0, 0.55);
  box-shadow: 0 26px 90px rgba(15, 23, 42, 0.14);
}

.social-card:hover::after {
  opacity: 1;
  transform: translateX(45%) rotate(10deg);
}

/* ÍCONE (glass + gradiente) */
.social-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(15, 23, 42, 0.14);
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.10);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* SVG */
.social-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  transition: transform 0.22s ease;
}

.social-card:hover .social-icon svg {
  transform: scale(1.08);
}

/* TEXTOS */
.social-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  position: relative;
  z-index: 1;
}

.social-name {
  font-size: 1rem;
  font-weight: 900;
  color: #0b0f19;
}

.social-handle {
  font-size: 0.85rem;
  color: #475569;
  font-weight: 700;
}

/* CTA discreto */
.social-handle::after {
  content: " • abrir";
  color: rgba(71, 85, 105, 0.75);
  font-weight: 700;
}

/* ====== Instagram (cores e glow) ====== */
.social-card.instagram {
  color: #b100ff;
}

.social-card.instagram:hover {
  background:
    radial-gradient(600px 280px at 15% 10%, rgba(255, 208, 0, 0.14), transparent 55%),
    linear-gradient(135deg, rgba(255, 8, 107, 0.14), rgba(177, 0, 255, 0.10), rgba(255, 153, 0, 0.10));
}

.social-card.instagram:hover .social-icon {
  background: linear-gradient(135deg, rgba(255, 8, 107, 0.16), rgba(177, 0, 255, 0.12), rgba(255, 153, 0, 0.12));
  box-shadow: 0 18px 60px rgba(255, 8, 107, 0.18);
}

/* ====== Facebook (cores e glow) ====== */
.social-card.facebook {
  color: #1877f2;
}

.social-card.facebook:hover {
  background:
    radial-gradient(600px 280px at 15% 10%, rgba(255, 208, 0, 0.12), transparent 55%),
    linear-gradient(135deg, rgba(24, 119, 242, 0.14), rgba(11, 15, 25, 0.06));
}

.social-card.facebook:hover .social-icon {
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.16), rgba(11, 15, 25, 0.06));
  box-shadow: 0 18px 60px rgba(24, 119, 242, 0.18);
}

/* RESPONSIVO */
@media (max-width: 640px) {
  .social-cards {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .social-title {
    font-size: 1.65rem;
  }

  .social-card {
    padding: 1.1rem 1.2rem;
  }

  .social-icon {
    width: 50px;
    height: 50px;
  }
}

