/* ==========================================================================
   LICITPRINT COMUNICAÇÃO VISUAL - STYLESHEET (NOVA LANDING PAGE)
   ========================================================================== */

/* --- RESET & VARIABLES --- */
:root {
  /* Brand Official Colors */
  --color-cyan: #00AEEF;
  --color-cyan-dark: #0072BC;
  --color-cyan-light: #E0F7FE;
  
  --color-magenta: #E5007D;
  --color-magenta-dark: #C20072;
  --color-magenta-light: #FDE8F5;

  --color-yellow: #FFF200;
  --color-yellow-dark: #E6AC00;
  --color-yellow-light: #FFF9E6;

  --color-blue-hero: #0038FF;
  --color-blue-hero-dark: #0028CC;

  --color-dark: #0F172A;
  --color-dark-surface: #1E293B;
  --color-gray-dark: #334155;
  --color-gray-medium: #475569;
  --color-gray-light: #F8FAFC;
  --color-gray-border: #E2E8F0;
  
  --color-white: #FFFFFF;
  --color-whatsapp: #25D366;
  --color-whatsapp-hover: #1DA851;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout Spacing */
  --container-max-width: 1200px;
  --section-padding-desktop: 80px 0;
  --section-padding-mobile: 50px 0;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 35px -10px rgba(15, 23, 42, 0.12), 0 10px 15px -5px rgba(15, 23, 42, 0.04);
  --shadow-glow-blue: 0 8px 25px rgba(0, 56, 255, 0.35);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 9999px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-dark);
  background-color: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* --- UTILITY CLASSES & CONTAINERS --- */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }

/* Highlights */
.highlight-blue { color: var(--color-blue-hero); }
.highlight-cyan { color: var(--color-cyan); }
.highlight-magenta { color: var(--color-magenta); }
.highlight-yellow-text { color: #D97706; }
.highlight-cyan-light { color: #38BDF8; }

/* --- SHIMMER ANIMATION FOR CTAs --- */
.btn-shimmer {
  position: relative;
  overflow: hidden;
}

.btn-shimmer::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  animation: shimmerSweep 3.5s infinite ease-in-out;
}

@keyframes shimmerSweep {
  0% { left: -60%; }
  25% { left: 140%; }
  100% { left: 140%; }
}

/* --- BUTTONS (SEM ÍCONES CONFORME PEDIDO) --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  text-decoration: none;
  border-radius: var(--radius-pill);
  transition: all var(--transition-normal);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--color-blue-hero);
  color: var(--color-white);
  box-shadow: var(--shadow-glow-blue);
  white-space: nowrap;
}

.btn-primary:hover {
  background-color: var(--color-blue-hero-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 56, 255, 0.45);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-blue-hero);
  border: 2px solid var(--color-blue-hero);
  white-space: nowrap;
}

.btn-outline:hover {
  background-color: var(--color-blue-hero);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* CARD CTA BUTTON */
.btn-card {
  background-color: var(--color-blue-hero);
  color: var(--color-white);
  padding: 14px 16px;
  width: 100%;
  font-size: 0.9rem;
  font-weight: 800;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-glow-blue);
  white-space: normal !important;
  line-height: 1.35;
  text-align: center;
  word-wrap: break-word;
}

.btn-card:hover {
  background-color: var(--color-blue-hero-dark);
  transform: translateY(-2px);
}

.btn-reseller {
  background-color: var(--color-blue-hero);
  color: var(--color-white);
  padding: 16px 36px;
  font-size: 1.1rem;
  box-shadow: var(--shadow-glow-blue);
  white-space: nowrap;
}

.btn-reseller:hover {
  background-color: var(--color-blue-hero-dark);
  transform: translateY(-2px);
}

.btn-google {
  background-color: #4285F4;
  color: var(--color-white);
  padding: 12px 24px;
  font-size: 0.9rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
  white-space: nowrap;
}

.btn-google:hover {
  background-color: #3367D6;
  transform: translateY(-2px);
}

/* Sizes */
.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-xl {
  padding: 18px 40px;
  font-size: 1.15rem;
}

.btn-full {
  width: 100%;
}

/* --- TOP ANNOUNCEMENT BAR --- */
.top-bar {
  background-color: var(--color-magenta);
  color: var(--color-white);
  padding: 10px 0;
  font-size: 0.9rem;
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 0.5px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(229, 0, 125, 0.3);
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.top-bar-text {
  margin: 0;
  color: var(--color-white);
  text-transform: uppercase;
}

.top-bar-yellow {
  color: var(--color-yellow);
  font-weight: 900;
}

/* --- HEADER / NAVIGATION --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-gray-border);
  padding: 10px 0;
  transition: all var(--transition-normal);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
}

.brand-logo img,
.brand-logo-img {
  height: 78px !important;
  width: auto !important;
  max-width: 220px !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  clip-path: none !important;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
  transition: transform var(--transition-fast);
}

.brand-logo img:hover,
.brand-logo-img:hover {
  transform: scale(1.04);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-list a {
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.nav-list a:hover {
  color: var(--color-cyan);
}

.header-cta-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-btn {
  padding: 10px 24px;
  font-size: 0.9rem;
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.mobile-nav-toggle span {
  width: 26px;
  height: 3px;
  background-color: var(--color-dark);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* --- MOBILE MENU OVERLAY --- */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 340px;
  height: 100%;
  background-color: var(--color-white);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-dark);
  cursor: pointer;
  line-height: 1;
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.mobile-nav a {
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
}

.mobile-nav a:hover {
  color: var(--color-cyan);
}

/* --- HERO SECTION --- */
.hero-section {
  position: relative;
  padding: 50px 0 70px 0;
  background: radial-gradient(circle at 10% 20%, rgba(0, 174, 239, 0.04) 0%, rgba(255, 255, 255, 0) 50%),
              radial-gradient(circle at 90% 80%, rgba(229, 0, 125, 0.04) 0%, rgba(255, 255, 255, 0) 50%);
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.05fr 1.15fr 0.85fr;
  align-items: flex-end;
  gap: 20px;
  max-width: 1320px;
}

.hero-pill-tag {
  display: inline-block;
  margin-bottom: 16px;
}

.pill-text-custom {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--color-blue-hero);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cmyk-bar-line {
  height: 4px;
  width: 60px;
  background: linear-gradient(90deg, var(--color-cyan) 0%, var(--color-magenta) 50%, var(--color-yellow) 100%);
  border-radius: 2px;
  margin-top: 4px;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.8rem;
  line-height: 1.2;
  color: var(--color-dark);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-gray-medium);
  margin-bottom: 32px;
  max-width: 580px;
  line-height: 1.6;
}

.hero-subtitle strong {
  color: var(--color-dark);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-trust-badges {
  display: flex;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--color-gray-border);
  padding-top: 24px;
  flex-wrap: wrap;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-dark);
}

.hero-photo-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.professional-photo-cutout {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.22);
  transform-origin: bottom center;
  filter: drop-shadow(0 15px 30px rgba(15, 23, 42, 0.12));
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 98%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 98%);
}

/* --- HERO CARD EXPERIENCE --- */
.hero-card-experience {
  background-color: var(--color-white);
  border: 1.5px solid var(--color-blue-hero);
  border-radius: 24px;
  padding: 32px 26px;
  box-shadow: 0 10px 30px rgba(0, 71, 255, 0.08);
  width: 100%;
  max-width: 360px;
  text-align: left;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  align-self: center;
}

.hero-card-experience:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 71, 255, 0.14);
}

.card-exp-icon {
  width: 60px;
  height: 60px;
  background-color: var(--color-blue-hero);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 6px 18px rgba(0, 71, 255, 0.3);
}

.card-exp-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.45rem;
  line-height: 1.25;
  color: var(--color-blue-hero);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.card-exp-text {
  font-size: 0.95rem;
  line-height: 1.62;
  color: #334155;
  margin-bottom: 16px;
  font-weight: 400;
}

.card-exp-text:last-child {
  margin-bottom: 0;
}

/* --- VALUES BAR SECTION --- */
.values-bar-section {
  background-color: var(--color-gray-light);
  padding: 50px 0;
  border-top: 1px solid var(--color-gray-border);
  border-bottom: 1px solid var(--color-gray-border);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background-color: var(--color-white);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-gray-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal);
}

.value-card:hover {
  transform: translateY(-4px);
}

.value-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-cyan { background-color: var(--color-cyan-light); color: var(--color-cyan-dark); }
.icon-magenta { background-color: var(--color-magenta-light); color: var(--color-magenta-dark); }
.icon-yellow { background-color: var(--color-yellow-light); color: var(--color-yellow-dark); }
.icon-dark { background-color: var(--color-gray-light); color: var(--color-dark); }

.value-text h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--color-dark);
}

.value-text p {
  font-size: 0.85rem;
  color: var(--color-gray-medium);
  line-height: 1.4;
}

/* --- SECTION HEADERS --- */
.section-header {
  margin-bottom: 50px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.tag-cyan { background-color: var(--color-cyan-light); color: var(--color-cyan-dark); }
.tag-magenta { background-color: var(--color-magenta-light); color: var(--color-magenta-dark); }
.tag-yellow { background-color: var(--color-yellow-light); color: #B45309; }

.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-gray-medium);
  max-width: 650px;
  margin: 0 auto;
}

/* --- PRODUCTS SECTION --- */
.products-section {
  padding: var(--section-padding-desktop);
  background-color: var(--color-white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  position: relative;
  background-color: var(--color-white);
  border: 2px solid var(--color-gray-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-cyan);
  box-shadow: var(--shadow-md);
}

.product-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.badge-cyan { background-color: var(--color-cyan); color: var(--color-white); }
.badge-magenta { background-color: var(--color-magenta); color: var(--color-white); }
.badge-yellow { background-color: #E6AC00; color: var(--color-dark); }
.badge-dark { background-color: var(--color-dark); color: var(--color-white); }

.product-image-holder {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: var(--color-gray-light);
  border-bottom: 1px solid var(--color-gray-border);
}

.product-img-real {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-normal);
}

.product-card:hover .product-img-real {
  transform: scale(1.06);
}

.product-card-title-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0) 100%);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.product-body {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--color-gray-medium);
  margin-bottom: 16px;
  line-height: 1.5;
}

.product-features {
  list-style: none;
  margin-bottom: 24px;
  flex-grow: 1;
}

.product-features li {
  font-size: 0.88rem;
  color: var(--color-dark);
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.45;
  word-break: normal;
  hyphens: none;
}

/* --- RESELLER SECTION --- */
.reseller-section {
  position: relative;
  padding: var(--section-padding-desktop);
  background: linear-gradient(135deg, #0A0F1D 0%, #1E293B 100%);
  color: var(--color-white);
  overflow: hidden;
}

.reseller-bg-pattern {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: radial-gradient(rgba(0, 174, 239, 0.15) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.6;
}

.reseller-content-card {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.reseller-badge {
  display: inline-block;
  background-color: rgba(0, 174, 239, 0.2);
  color: var(--color-cyan);
  border: 1px solid var(--color-cyan);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.reseller-headline {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.reseller-text {
  font-size: 1.15rem;
  color: #94A3B8;
  max-width: 750px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.reseller-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  text-align: left;
}

.r-highlight-item {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px;
  border-radius: var(--radius-md);
  display: flex;
  gap: 16px;
}

.r-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.r-info h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 6px;
}

.r-info p {
  font-size: 0.85rem;
  color: #94A3B8;
  line-height: 1.4;
}

/* --- REVIEWS CAROUSEL (DESLIZANTE/PASSANDO PARA O LADO) --- */
.reviews-section {
  padding: var(--section-padding-desktop);
  background-color: var(--color-gray-light);
}

.reviews-wrapper {
  max-width: 750px;
  margin: 0 auto;
  display: block;
}

.google-score-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-border);
}

.score-number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--color-dark);
}

.score-stars {
  color: #E6AC00;
  font-size: 1.5rem;
  margin: 8px 0;
}

.score-text {
  font-size: 0.9rem;
  color: var(--color-gray-medium);
  margin-bottom: 24px;
}

/* Carousel Slider Elements */
.reviews-carousel-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.reviews-slider-container {
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius-md);
}

.reviews-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.reviews-slide-item {
  min-width: 100%;
  box-sizing: border-border-box;
  padding: 6px;
}

.review-card-real {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-gray-border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  padding: 12px;
}

.review-img-real {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
}

/* Carousel Controls (Nav Arrows & Dots) */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding: 0 10px;
}

.carousel-nav-btn {
  background-color: var(--color-white);
  border: 1.5px solid var(--color-gray-border);
  color: var(--color-dark);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.carousel-nav-btn:hover {
  background-color: var(--color-blue-hero);
  color: var(--color-white);
  border-color: var(--color-blue-hero);
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-gray-border);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.carousel-dot.active {
  background-color: var(--color-blue-hero);
  width: 24px;
  border-radius: var(--radius-pill);
}

/* --- GOOGLE MAPS (OFICIAL GOOGLE EMBED SEM BUG) --- */
.location-section {
  padding: var(--section-padding-desktop);
  background-color: var(--color-white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: stretch;
}

.map-frame-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-border);
  height: 100%;
  min-height: 420px;
  background-color: #E2E8F0;
}

.map-frame-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.location-info-card {
  background-color: var(--color-gray-light);
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.location-info-card h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--color-dark);
  margin-bottom: 20px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.info-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--color-dark);
}

.info-item p {
  font-size: 0.9rem;
  color: var(--color-gray-medium);
  margin: 0;
}

.info-item a {
  color: var(--color-cyan-dark);
  text-decoration: none;
  font-weight: 600;
}

.info-item a:hover {
  text-decoration: underline;
}

/* --- FAQ SECTION --- */
.faq-section {
  padding: var(--section-padding-desktop);
  background-color: var(--color-gray-light);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-gray-border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-dark);
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--color-cyan);
  transition: transform var(--transition-fast);
}

.faq-answer {
  padding: 0 24px 20px 24px;
  display: none;
  font-size: 0.95rem;
  color: var(--color-gray-medium);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* --- FINAL CTA SECTION --- */
.final-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--color-blue-hero-dark) 0%, var(--color-dark) 100%);
  color: var(--color-white);
}

.final-cta-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.final-cta-sub {
  font-size: 1.15rem;
  color: #E2E8F0;
  max-width: 650px;
  margin: 0 auto 36px auto;
}

/* --- FOOTER --- */
.site-footer {
  background-color: #0B1120;
  color: #94A3B8;
  padding: 60px 0 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  height: 72px !important;
  width: auto !important;
  max-width: 220px !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  clip-path: none !important;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.footer-about {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-heading);
  color: var(--color-white);
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #94A3B8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--color-cyan);
}

.footer-contact-col p {
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  font-size: 0.8rem;
}

.footer-cnpj {
  margin-top: 6px;
  font-weight: 600;
  color: #CBD5E1;
}

/* --- MOBILE STICKY BAR --- */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-white);
  padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1500;
  border-top: 1px solid var(--color-gray-border);
}

.mobile-sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: var(--color-whatsapp);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  padding: 14px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (320px, 360px, 375px, 390px, 414px, 768px, 1024px)
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-card-experience {
    max-width: 520px;
    margin: 0 auto;
    text-align: left;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust-badges {
    justify-content: center;
  }

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

  .reseller-highlights-grid {
    grid-template-columns: 1fr;
  }

  .reviews-wrapper {
    grid-template-columns: 1fr;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 70px;
  }

  .container {
    padding: 0 16px;
  }

  .main-nav {
    display: none;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  /* Impede qualquer botão de cortar texto no mobile */
  .btn {
    white-space: normal !important;
    text-align: center;
    max-width: 100%;
    line-height: 1.35;
    word-break: break-word;
  }

  .btn-lg, .btn-xl, .btn-primary, .btn-outline, .btn-reseller, .btn-google {
    padding: 14px 20px;
    font-size: 0.95rem;
    white-space: normal !important;
  }

  .hero-title {
    font-size: 2.1rem;
    line-height: 1.25;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .reseller-headline {
    font-size: 1.9rem;
    line-height: 1.25;
  }

  .final-cta-title {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .final-cta-sub {
    font-size: 1rem;
  }

  .brand-logo img,
  .brand-logo-img {
    height: 62px !important;
    max-width: 180px !important;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .location-info-card {
    padding: 24px 18px;
  }

  .location-info-card h3 {
    font-size: 1.25rem;
  }

  .mobile-sticky-bar {
    display: flex;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .hero-card-experience {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .card-exp-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
  }

  .card-exp-title {
    font-size: 1.25rem;
    margin-bottom: 16px;
  }

  .card-exp-text {
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 14px;
  }

  .top-bar-text {
    font-size: 0.78rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .btn-lg, .btn-xl, .btn-primary, .btn-outline, .btn-reseller, .btn-google {
    padding: 12px 16px;
    font-size: 0.9rem;
    width: 100%;
    white-space: normal !important;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .reseller-headline {
    font-size: 1.6rem;
  }

  .reseller-text {
    font-size: 0.95rem;
  }

  .final-cta-title {
    font-size: 1.5rem;
  }

  .location-info-card {
    padding: 20px 14px;
  }

  .location-info-card .btn {
    font-size: 0.85rem;
    padding: 12px 14px;
    width: 100%;
    white-space: normal !important;
  }

  .mobile-sticky-btn {
    font-size: 0.95rem;
    padding: 12px;
  }
}

/* ==========================================================================
   MODAL DE ORÇAMENTO (OTIMIZADO PARA MOBILE E DESKTOP)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.75);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  max-height: 88vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 32px 24px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.35);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--color-gray-border);
}

.modal-overlay.active .modal-container {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #F1F5F9;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 26px;
  color: var(--color-gray-medium);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  line-height: 1;
  touch-action: manipulation;
}

.modal-close:hover,
.modal-close:active {
  background-color: var(--color-magenta-light);
  color: var(--color-magenta);
}

.modal-header {
  margin-bottom: 20px;
  padding-right: 24px;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.modal-subtitle {
  font-size: 0.88rem;
  color: var(--color-gray-medium);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.form-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-dark);
}

.form-label .required {
  color: var(--color-magenta);
}

.form-control {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1.5px solid var(--color-gray-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 16px; /* Evita zoom automático no iOS Safari ao focar no campo */
  color: var(--color-dark);
  background-color: #FAFAFA;
  transition: all var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%3C475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-control:focus {
  outline: none;
  background-color: var(--color-white);
  border-color: var(--color-cyan);
  box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.15);
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.radio-group {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 4px;
}

.radio-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-dark);
  user-select: none;
  flex: 1;
  padding: 12px 16px;
  background: #F8FAFC;
  border: 1.5px solid var(--color-gray-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  min-height: 48px;
  touch-action: manipulation;
}

.radio-label input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-gray-border);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  transition: all var(--transition-fast);
  background-color: var(--color-white);
  flex-shrink: 0;
}

.radio-label:has(input[type="radio"]:checked),
.radio-label input[type="radio"]:checked ~ .radio-text {
  color: var(--color-blue-hero);
}

.radio-label:has(input[type="radio"]:checked) {
  border-color: var(--color-blue-hero);
  background-color: #EFF6FF;
}

.radio-label input[type="radio"]:checked + .radio-custom {
  border-color: var(--color-blue-hero);
  background-color: var(--color-white);
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-blue-hero);
}

.modal-submit-btn {
  margin-top: 8px;
  padding: 16px;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  width: 100%;
  min-height: 52px;
}

@media (max-width: 576px) {
  .modal-overlay {
    padding: 12px;
  }

  .modal-container {
    padding: 24px 16px;
    border-radius: var(--radius-md);
    max-height: 92vh;
  }

  .modal-title {
    font-size: 1.25rem;
  }

  .modal-subtitle {
    font-size: 0.82rem;
  }

  .form-row-2col {
    grid-template-columns: 1fr;
  }

  .modal-submit-btn {
    font-size: 0.9rem;
    padding: 14px 12px;
    white-space: normal !important;
  }
}