/* =========================================
   GRAFINET — Gráfica Online Alta Floresta MT
   style.css
   ========================================= */

:root {
  --orange: #EC008C; /* Magenta CMYK */
  --orange-dark: #00AEEF; /* Cyan CMYK */
  --orange-light: #FF8C3A;
  --yellow: #FFF200; /* Yellow CMYK */
  --dark: #231F20; /* Black CMYK */
  --dark-2: #1A1A1A;
  --dark-3: #222222;
  --gray: #2E2E2E;
  --gray-mid: #666;
  --gray-light: #AAAAAA;
  --white: #FFFFFF;
  --off-white: #F7F4F0;
  --green-wa: #25D366;
  --green-wa-dark: #1DA851;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: none;
  --shadow-lg: none;
  --transition: all 0.3s ease;
  --font-display: 'Quicksand', sans-serif;
  --font-body: 'Quicksand', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.highlight { color: var(--orange); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-whatsapp {
  background: var(--green-wa);
  color: var(--white);
  box-shadow: none !important;
}
.btn-whatsapp:hover {
  background: var(--green-wa-dark);
  transform: translateY(-2px);
  box-shadow: none !important;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 36px; font-size: 1.1rem; }
.btn-xl { padding: 18px 44px; font-size: 1.25rem; }

.pulse {
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: none !important; }
  50% { box-shadow: none !important; }
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(17,17,17,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--orange);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-desktop a {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-desktop a:hover {
  color: var(--orange);
  background: rgba(255,107,0,0.1);
}

.header-cta { padding: 10px 20px; font-size: 0.9rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--dark-2);
  padding: 20px;
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 12px 16px;
  border-radius: 10px;
  transition: var(--transition);
}
.nav-mobile a:hover { background: rgba(255,107,0,0.15); color: var(--orange); }
.nav-mobile .btn-whatsapp { margin-top: 12px; justify-content: center; }

/* ===== HERO ===== */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(255,107,0,0.2) 0%, transparent 65%),
    radial-gradient(ellipse at 20% 80%, rgba(255,214,0,0.1) 0%, transparent 50%),
    linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255,107,0,0.03) 40px, rgba(255,107,0,0.03) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,107,0,0.03) 40px, rgba(255,107,0,0.03) 41px);
}

.hero-overlay {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,107,0,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 90px;
  padding-bottom: 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,0.15);
  border: 1px solid rgba(255,107,0,0.4);
  color: var(--orange-light);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeDown 0.6s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 20px;
  text-transform: uppercase;
  animation: fadeUp 0.6s ease 0.1s both;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 36px;
  animation: fadeUp 0.6s ease 0.2s both;
}
.hero-sub strong { color: var(--white); }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeUp 0.6s ease 0.3s both;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s ease 0.4s both;
}
.stat {
  display: flex;
  flex-direction: column;
  border-left: 3px solid var(--orange);
  padding-left: 16px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat span:last-child {
  font-size: 0.8rem;
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ===== STRIP ===== */
.strip {
  background: var(--orange);
  overflow: hidden;
  padding: 14px 0;
}
.strip-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: scroll-left 25s linear infinite;
}
.strip-track span {
  padding: 0 30px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-right: 1px solid rgba(255,255,255,0.3);
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-dark { background: var(--dark-2); color: var(--white); }
.section-accent { background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%); color: var(--white); }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  background: rgba(255,107,0,0.12);
  color: var(--orange);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  border: 1px solid rgba(255,107,0,0.3);
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 14px;
  text-transform: uppercase;
  line-height: 1.1;
}
.section-dark .section-header h2,
.section-accent .section-header h2 { color: var(--white); }
.section-header p {
  color: var(--gray-mid);
  font-size: 1.05rem;
  max-width: 520px;
  margin-inline: auto;
}
.section-dark .section-header p { color: rgba(255,255,255,0.6); }

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.service-card:hover { transform: translateY(-6px); box-shadow: none !important; }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  background: rgba(255,107,0,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--orange);
  margin-bottom: 18px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.1);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--dark);
}

.service-card p { font-size: 0.9rem; color: var(--gray-mid); line-height: 1.6; margin-bottom: 20px; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-wa);
  font-weight: 700;
  font-size: 0.9rem;
  font-family: var(--font-display);
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.service-link:hover { color: var(--green-wa-dark); gap: 12px; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 60px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.cta-text p { color: rgba(255,255,255,0.85); font-size: 1rem; }
.cta-inner .btn-whatsapp {
  background: var(--white);
  color: var(--green-wa-dark);
  flex-shrink: 0;
  box-shadow: none !important;
}
.cta-inner .btn-whatsapp:hover { background: #f0fdf4; transform: translateY(-3px); }

/* ===== PRODUCTS GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: none !important;
}

.product-icon {
  width: 70px; height: 70px;
  background: rgba(255,107,0,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--orange);
  margin: 0 auto 20px;
  transition: var(--transition);
}
.product-card:hover .product-icon { background: var(--orange); color: var(--white); }

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 10px;
}

.product-card p { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 24px; }

/* ===== DIFERENCIAIS ===== */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.diff-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.diff-card:hover { transform: translateY(-5px); box-shadow: none !important; }

.diff-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 20px;
  box-shadow: none !important;
}

.diff-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--dark);
}
.diff-card p { font-size: 0.9rem; color: var(--gray-mid); line-height: 1.6; }

/* ===== STEPS ===== */
.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.step {
  text-align: center;
  max-width: 200px;
  position: relative;
}
.step-num {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 28px; height: 28px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
  font-family: var(--font-display);
}

.step-icon {
  width: 80px; height: 80px;
  background: rgba(255,107,0,0.12);
  border: 2px solid rgba(255,107,0,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--orange);
  margin: 0 auto 16px;
  position: relative;
  transition: var(--transition);
}
.step:hover .step-icon { background: var(--orange); color: var(--white); border-color: var(--orange); }

.step h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.step p { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

.step-arrow {
  color: var(--orange);
  font-size: 1.5rem;
  opacity: 0.5;
  flex-shrink: 0;
}

.steps-cta { text-align: center; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
  transition: var(--transition);
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 5rem;
  color: rgba(255,107,0,0.1);
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: none !important; }
.stars { font-size: 1.2rem; margin-bottom: 16px; }
.testimonial p { font-size: 0.95rem; color: var(--gray-mid); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial cite { font-size: 0.85rem; font-weight: 700; color: var(--orange); font-style: normal; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.contact-card {
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border: 2px solid transparent;
}
.contact-card:hover { transform: translateY(-6px); }

.contact-card i { font-size: 2.5rem; }
.contact-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; text-transform: uppercase; }
.contact-card p { font-size: 0.9rem; opacity: 0.85; }
.contact-cta { font-size: 0.85rem; font-weight: 700; margin-top: 4px; }

.contact-whatsapp { background: rgba(37,211,102,0.12); border-color: rgba(37,211,102,0.3); color: var(--green-wa); }
.contact-whatsapp:hover { background: var(--green-wa); color: var(--white); }
.contact-instagram { background: rgba(225,48,108,0.1); border-color: rgba(225,48,108,0.3); color: #E1306C; }
.contact-instagram:hover { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: var(--white); border-color: transparent; }
.contact-facebook { background: rgba(24,119,242,0.1); border-color: rgba(24,119,242,0.3); color: #1877F2; }
.contact-facebook:hover { background: #1877F2; color: var(--white); }
.contact-google { background: rgba(234,67,53,0.1); border-color: rgba(234,67,53,0.3); color: #EA4335; }
.contact-google:hover { background: #EA4335; color: var(--white); }

.location-info {
  text-align: center;
  color: rgba(255,255,255,0.6);
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.location-info p { display: flex; align-items: center; gap: 10px; font-size: 1rem; }
.location-info i { color: var(--orange); }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: var(--white); padding: 60px 0 0; }

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img { margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 24px; }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}
.footer-social a:hover { background: var(--orange); color: var(--white); border-color: var(--orange); transform: translateY(-3px); }

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links li { display: flex; align-items: center; gap: 8px; }
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); padding-left: 6px; }
.footer-links i { color: var(--orange); font-size: 0.8rem; width: 14px; }

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.85rem;
  line-height: 1.8;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 60px; height: 60px;
  background: var(--green-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  box-shadow: none !important;
  transition: var(--transition);
  animation: pulse 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  background: var(--green-wa-dark);
}

.float-tooltip {
  position: absolute;
  right: 72px;
  background: var(--dark);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.float-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--dark);
}
.whatsapp-float:hover .float-tooltip { opacity: 1; right: 76px; }

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 998;
  width: 44px; height: 44px;
  background: rgba(255,107,0,0.9);
  border: none;
  border-radius: 10px;
  color: var(--white);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.back-top.show { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-top:hover { background: var(--orange-dark); transform: translateY(-3px); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .nav-desktop, .header-cta { display: none; }
  .hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 24px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-inner .btn { width: 100%; justify-content: center; }
  .steps { flex-direction: column; gap: 24px; }
  .step-arrow { transform: rotate(90deg); }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .location-info { flex-direction: column; gap: 12px; }
  .whatsapp-float { bottom: 20px; right: 20px; }
  .back-top { bottom: 90px; right: 20px; }
}

#produtos {
    display: none;
}