/* ==========================================================================
   MR SIGNS & DESIGNS LLC — ALTERNATING DARK & LIGHT SECTIONS STYLESHEET
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-dark: #0a0b0d;
  --bg-dark-card: #12141a;
  --bg-light: #ffffff;
  --bg-light-alt: #f8fafc;
  --bg-light-card: #ffffff;
  --bg-nav: rgba(10, 11, 13, 0.95);
  
  /* CMYK & Spectrum Brand Colors */
  --cmyk-cyan: #00AEEF;
  --cmyk-magenta: #E6007E;
  --cmyk-yellow: #F59E0B; /* Rich yellow accent */
  
  /* Gradient Spectrum Token */
  --gradient-spectrum: linear-gradient(90deg, #00AEEF 0%, #E6007E 50%, #FFB800 100%);
  --cmyk-magenta-glow: rgba(230, 0, 126, 0.35);
  --cmyk-cyan-glow: rgba(0, 174, 239, 0.35);
  
  /* Text Tokens */
  --text-dark-theme: #FFFFFF;
  --text-dark-muted: #A0AEC0;
  
  --text-light-theme: #0f172a;
  --text-light-muted: #475569;
  
  --border-dark: rgba(255, 255, 255, 0.12);
  --border-light: rgba(15, 23, 42, 0.12);
  
  /* Status & Accents */
  --whatsapp-green: #25D366;
  --whatsapp-glow: rgba(37, 211, 102, 0.4);

  /* Fonts & Radius */
  --font-heading: 'Bebas Neue', cursive, sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.4);
  --shadow-light-card: 0 10px 30px rgba(15, 23, 42, 0.08);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-dark-theme);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
}

/* Text Spectrum & Dividers */
.text-spectrum {
  background: var(--gradient-spectrum);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.cmyk-divider-line {
  height: 4px;
  width: 80px;
  background: var(--gradient-spectrum);
  border-radius: 2px;
  margin: 1rem 0 1.5rem 0;
}

.cmyk-divider-line.center-line {
  margin: 1rem auto 1.8rem auto;
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.btn-lg {
  padding: 1.1rem 2.2rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cmyk-magenta) 0%, #B80062 100%);
  color: #fff;
  box-shadow: 0 8px 25px var(--cmyk-magenta-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(230, 0, 126, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid var(--border-dark);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--cmyk-cyan);
  color: var(--cmyk-cyan);
}

.btn-whatsapp {
  background: var(--whatsapp-green);
  color: #fff;
  box-shadow: 0 8px 22px var(--whatsapp-glow);
}

.btn-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.shadow-pulse {
  animation: pulseShadow 2s infinite;
}

@keyframes pulseShadow {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Announcement Bar */
.announcement-bar {
  background: #000000;
  border-bottom: 1px solid var(--border-dark);
  padding: 0.5rem 0;
  font-size: 0.85rem;
  color: #cbd5e1;
}

.announcement-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.announcement-bar i {
  color: var(--cmyk-yellow);
}

.top-contacts {
  display: flex;
  gap: 1.2rem;
}

.top-contacts a:hover {
  color: var(--cmyk-cyan);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-nav);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-dark);
  padding: 0.8rem 0;
  transition: var(--transition);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  border-radius: 50%;
  background: #ffffff;
  padding: 4px;
  border: 2px solid var(--cmyk-cyan);
  box-shadow: 0 0 14px var(--cmyk-cyan-glow);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  letter-spacing: 1px;
  color: #fff;
  line-height: 1;
}

.brand-tagline {
  font-size: 0.72rem;
  color: var(--cmyk-cyan);
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark-muted);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: #fff;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-spectrum);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   SEÇÃO 1: HERO (FUNDO ESCURO - DARK)
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 5rem 0 4rem;
  overflow: hidden;
  background-color: var(--bg-dark);
  background-image: radial-gradient(circle at 10% 20%, rgba(0, 174, 239, 0.12) 0%, transparent 45%),
                    radial-gradient(circle at 90% 80%, rgba(230, 0, 126, 0.12) 0%, transparent 45%);
}

.bg-watermark {
  position: absolute;
  top: -20px;
  right: -40px;
  font-family: var(--font-heading);
  font-size: 28vw;
  color: rgba(255, 255, 255, 0.02);
  line-height: 0.8;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.badge-usa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  background: rgba(0, 174, 239, 0.12);
  border: 1px solid rgba(0, 174, 239, 0.3);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--cmyk-cyan);
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--cmyk-magenta);
  border-radius: 50%;
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(230, 0, 126, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(230, 0, 126, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(230, 0, 126, 0); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 0.8rem;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-dark-muted);
  margin-bottom: 1.8rem;
  max-width: 580px;
}

.price-pills-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.price-pill {
  display: flex;
  flex-direction: column;
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-dark);
  background: var(--bg-dark-card);
}

.price-pill.pink {
  border-color: rgba(230, 0, 126, 0.4);
  box-shadow: 0 6px 20px rgba(230, 0, 126, 0.15);
}

.price-pill.cyan {
  border-color: rgba(0, 174, 239, 0.4);
  box-shadow: 0 6px 20px rgba(0, 174, 239, 0.15);
}

.price-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-dark-muted);
  font-weight: 700;
}

.price-value {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  letter-spacing: 0.5px;
}

.price-pill.pink .price-value { color: var(--cmyk-magenta); }
.price-pill.cyan .price-value { color: var(--cmyk-cyan); }

.hero-cta-group {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2.2rem;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 1.8rem;
  font-size: 0.88rem;
  color: var(--text-dark-muted);
  flex-wrap: wrap;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.hero-trust i.yellow { color: var(--cmyk-yellow); }
.hero-trust i.cyan { color: var(--cmyk-cyan); }

.hero-visual {
  position: relative;
}

.banner-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 8px;
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.4) 0%, rgba(230, 0, 126, 0.4) 50%, rgba(255, 184, 0, 0.4) 100%);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
}

.hero-main-img {
  border-radius: calc(var(--radius-lg) - 6px);
  width: 100%;
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  background: rgba(10, 11, 13, 0.92);
  border: 1px solid var(--border-dark);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
  color: #fff;
}

.badge-top-right {
  top: -15px;
  right: -15px;
  color: var(--cmyk-cyan);
  border-color: var(--cmyk-cyan);
}

.badge-bottom-left {
  bottom: -15px;
  left: -15px;
  color: var(--cmyk-magenta);
  border-color: var(--cmyk-magenta);
}

.value-pillars-container {
  margin-top: 4rem;
  position: relative;
  z-index: 2;
}

.pillars-grid {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 1.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: var(--shadow-card);
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.pillar-icon {
  font-size: 1.8rem;
  color: var(--cmyk-cyan);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 174, 239, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-text h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: #fff;
  line-height: 1;
}

.pillar-text span {
  font-size: 0.8rem;
  color: var(--text-dark-muted);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.pillar-divider {
  width: 1px;
  height: 40px;
  background: var(--border-dark);
}

/* ==========================================================================
   SEÇÃO 2: SERVIÇOS (FUNDO CLARO - LIGHT)
   ========================================================================== */
.services-section {
  padding: 6rem 0;
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.services-section .section-title {
  color: var(--text-light-theme);
}

.services-section .section-desc {
  color: var(--text-light-muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.services-section .service-card {
  background: var(--bg-light-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-light-card);
}

.services-section .service-card:hover {
  transform: translateY(-8px);
  border-color: var(--cmyk-cyan);
  box-shadow: 0 15px 35px rgba(0, 174, 239, 0.18);
}

.card-badge.price-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
  background: var(--cmyk-magenta);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 15px var(--cmyk-magenta-glow);
}

.card-img-holder {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: #e2e8f0;
}

.card-img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .card-img-holder img {
  transform: scale(1.08);
}

.card-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  background: #ffffff;
}

.ring-cyan {
  border: 2px solid var(--cmyk-cyan);
  color: #0077b6;
  box-shadow: 0 0 12px var(--cmyk-cyan-glow);
}

.ring-magenta {
  border: 2px solid var(--cmyk-magenta);
  color: var(--cmyk-magenta);
  box-shadow: 0 0 12px var(--cmyk-magenta-glow);
}

.ring-yellow {
  border: 2px solid var(--cmyk-yellow);
  color: var(--cmyk-yellow);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.3);
}

.services-section .card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  letter-spacing: 1px;
  color: var(--text-light-theme);
  margin-bottom: 0.5rem;
}

.services-section .card-body p {
  color: var(--text-light-muted);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.services-section .card-features {
  list-style: none;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #334155;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-weight: 600;
}

.services-section .card-features i {
  color: var(--cmyk-cyan);
  font-size: 0.85rem;
  margin-right: 0.4rem;
}

.services-section .card-btn {
  margin-top: auto;
  font-weight: 700;
  color: #0077b6;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
}

.services-section .card-btn:hover {
  color: var(--cmyk-magenta);
  gap: 0.8rem;
}

/* Guarantees Banner Section */
.guarantees-banner-section {
  padding: 3.5rem 0;
  background: var(--bg-light-alt);
}

.guarantees-bar-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 1.8rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: var(--shadow-card);
}

.guarantee-box {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.star-badge, .check-badge {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: #0a0b0d;
}

.star-badge {
  border: 2px solid var(--cmyk-yellow);
  color: var(--cmyk-yellow);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.3);
}

.check-badge {
  border: 2px solid var(--cmyk-cyan);
  color: var(--cmyk-cyan);
  box-shadow: 0 0 15px var(--cmyk-cyan-glow);
}

.guarantee-text h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: #fff;
  line-height: 1.1;
}

.guarantee-text span {
  font-size: 0.9rem;
  color: var(--text-dark-muted);
  font-weight: 600;
}

.guarantee-text strong {
  color: var(--cmyk-cyan);
}

.guarantee-logo-center img {
  height: 64px;
  width: 64px;
  object-fit: contain;
  border-radius: 50%;
  background: #ffffff;
  padding: 4px;
  border: 2px solid var(--cmyk-yellow);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
}

/* ==========================================================================
   SEÇÃO 3: GALERIA (FUNDO ESCURO - DARK)
   ========================================================================== */
.gallery-section {
  padding: 6rem 0;
  background-color: var(--bg-dark);
}

.gallery-section .section-title {
  color: #ffffff;
}

.gallery-section .section-desc {
  color: var(--text-dark-muted);
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 2.8rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-dark);
  color: var(--text-dark-muted);
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover, .tab-btn.active {
  background: var(--cmyk-cyan);
  color: #000;
  border-color: var(--cmyk-cyan);
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 260px;
  cursor: pointer;
  border: 1px solid var(--border-dark);
  box-shadow: var(--shadow-card);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 11, 13, 0.95) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.item-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--cmyk-cyan);
  font-weight: 700;
}

.item-title {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.zoom-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.2);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* ==========================================================================
   SEÇÃO 4: CALCULADORA / ORÇAMENTO (FUNDO CLARO - LIGHT)
   ========================================================================== */
.calculator-section {
  padding: 6rem 0;
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.calc-card {
  background: var(--bg-light-card);
  border: 1px solid rgba(230, 0, 126, 0.25);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-light-card);
}

.calc-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.calc-header h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  letter-spacing: 1px;
  color: var(--text-light-theme);
}

.calc-header p {
  color: var(--text-light-muted);
  max-width: 620px;
  margin: 0.5rem auto 0;
}

.badge-tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: rgba(230, 0, 126, 0.12);
  color: var(--cmyk-magenta);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  margin-bottom: 0.6rem;
}

.calc-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.form-group label i {
  color: var(--cmyk-magenta);
}

.calculator-section .form-control {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: var(--text-light-theme);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
}

.calculator-section .form-control:focus {
  outline: none;
  border-color: var(--cmyk-cyan);
  box-shadow: 0 0 0 3px var(--cmyk-cyan-glow);
  background: #ffffff;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300AEEF' 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 1rem center;
  background-size: 1.2em;
}

.calc-summary {
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.summary-info {
  display: flex;
  flex-direction: column;
}

.summary-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--cmyk-magenta);
  font-weight: 700;
}

.summary-text {
  font-size: 1.1rem;
  color: var(--text-light-theme);
  font-weight: 700;
}

/* Contact Features Bar */
.contact-features-section {
  padding: 4rem 0 2rem 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
}

.contact-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
}

.c-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.c-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--border-dark);
  background: var(--bg-dark-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.8rem;
}

.c-feature-item h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: #fff;
}

/* Contact DM Quote Banner */
.dm-quote-banner {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 1.8rem 2.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 4rem;
  box-shadow: var(--shadow-card);
}

.dm-location {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.dm-location i {
  font-size: 2.2rem;
  color: var(--cmyk-cyan);
}

.dm-sub {
  font-size: 0.78rem;
  color: var(--text-dark-muted);
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  letter-spacing: 1px;
}

.dm-state {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 1px;
  color: #fff;
}

/* ==========================================================================
   SEÇÃO 5: CONTATO (FUNDO ESCURO - DARK)
   ========================================================================== */
.contact-section {
  padding: 6rem 0;
  background-color: var(--bg-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info-col h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 1rem;
}

.contact-info-col p {
  color: var(--text-dark-muted);
  margin-bottom: 2rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateX(6px);
  border-color: var(--cmyk-cyan);
}

.card-icon {
  font-size: 1.8rem;
}

.wa-card .card-icon { color: var(--whatsapp-green); }
.insta-card .card-icon { color: var(--cmyk-magenta); }

.card-details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-label {
  font-size: 0.78rem;
  color: var(--text-dark-muted);
  text-transform: uppercase;
}

.card-value {
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
}

.contact-card .arrow {
  color: var(--text-dark-muted);
}

.form-wrapper {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

.form-wrapper h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.contact-section .form-control {
  background: rgba(10, 11, 13, 0.8);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
}

.contact-section .form-control:focus {
  outline: none;
  border-color: var(--cmyk-cyan);
  box-shadow: 0 0 0 3px var(--cmyk-cyan-glow);
}

/* Footer */
.footer {
  background: #050608;
  border-top: 1px solid var(--border-dark);
  padding-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  height: 56px;
  width: 56px;
  object-fit: contain;
  border-radius: 50%;
  background: #ffffff;
  padding: 4px;
  border: 2px solid var(--cmyk-magenta);
  box-shadow: 0 0 14px var(--cmyk-magenta-glow);
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-dark-muted);
  font-size: 0.92rem;
  max-width: 360px;
}

.footer-links h4, .footer-social h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: var(--text-dark-muted);
  font-size: 0.9rem;
}

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

.social-icons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
}

.social-icons a:hover {
  background: var(--cmyk-cyan);
  color: #000;
}

.phone-display, .insta-display {
  color: var(--text-dark-muted);
  font-size: 0.88rem;
  margin-top: 0.4rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dark-muted);
}

/* Floating WhatsApp Button */
.floating-wa-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 25px var(--whatsapp-glow);
  transition: var(--transition);
  animation: pulseShadow 2s infinite;
}

.floating-wa-btn:hover {
  transform: scale(1.1);
}

.wa-tooltip {
  position: absolute;
  right: 70px;
  background: #fff;
  color: #000;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.floating-wa-btn:hover .wa-tooltip {
  opacity: 1;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80vh;
  border-radius: var(--radius-md);
  border: 2px solid var(--cmyk-cyan);
}

.lightbox-caption {
  color: #fff;
  font-size: 1.2rem;
  margin-top: 1rem;
  font-weight: 600;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 35px;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cmyk-divider-line {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-description, .price-pills-row, .hero-cta-group, .hero-trust {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .pillars-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .pillar-divider {
    width: 100%;
    height: 1px;
  }

  .guarantees-bar-card {
    flex-direction: column;
    text-align: center;
  }

  .guarantee-box {
    flex-direction: column;
  }

  .dm-quote-banner {
    flex-direction: column;
    text-align: center;
  }

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

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

  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-dark);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--border-dark);
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .top-contacts {
    display: none;
  }

  .announcement-content {
    justify-content: center;
  }

  .calc-card {
    padding: 1.5rem;
  }

  .calc-summary {
    flex-direction: column;
    align-items: stretch;
  }
}
