/* ============================================================
   MMS Empreiteira — Stylesheet
   ============================================================ */

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

:root {
  --bg: #020617;
  --bg-2: #0f172a;
  --bg-3: #1e293b;
  --accent: #F07823;
  --accent-light: #f59a50;
  --accent-dim: rgba(240, 120, 35, 0.13);
  --accent-border: rgba(240, 120, 35, 0.32);
  --navy: #1A3A5C;
  --text: #f1f5f9;
  --text-muted: rgba(148, 163, 184, 1);
  --text-dim: rgba(255, 255, 255, 0.62);
  --border: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.11);
  --surface: rgba(255, 255, 255, 0.03);
  --surface-hover: rgba(255, 255, 255, 0.06);
  --font: 'Geist', ui-sans-serif, system-ui, -apple-system, sans-serif;
}

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

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
}

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

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(6px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@keyframes slideHero {
  0% {
    opacity: 0;
    transform: scale(1.04);
  }

  8% {
    opacity: 1;
    transform: scale(1);
  }

  33% {
    opacity: 1;
    transform: scale(1);
  }

  40% {
    opacity: 0;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.04);
  }
}

@keyframes spinGradient {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes glowPulse {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(240, 120, 35, 0.4), 0 0 60px rgba(240, 120, 35, 0.12);
  }

  50% {
    box-shadow: 0 0 40px rgba(240, 120, 35, 0.7), 0 0 100px rgba(240, 120, 35, 0.28);
  }
}

/* ============================================================
   ANIMATION UTILITY CLASSES
   ============================================================ */

.anim-1 {
  animation: fadeSlideIn 1s ease-out 0.10s both;
}

.anim-2 {
  animation: fadeSlideIn 1s ease-out 0.25s both;
}

.anim-3 {
  animation: fadeSlideIn 1s ease-out 0.40s both;
}

.anim-4 {
  animation: fadeSlideIn 1s ease-out 0.55s both;
}

.anim-5 {
  animation: fadeSlideIn 1s ease-out 0.70s both;
}

/* AOS: visible by default, JS hides then reveals */
.aos {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-aos .aos {
  opacity: 0;
  transform: translateY(28px);
}

.js-aos .aos.visible {
  opacity: 1;
  transform: translateY(0);
}

.aos-d1 {
  transition-delay: 0.1s;
}

.aos-d2 {
  transition-delay: 0.2s;
}

.aos-d3 {
  transition-delay: 0.3s;
}

/* ============================================================
   NAVBAR
   ============================================================ */

.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #ffffff;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid #e2e8f0;
  padding: 0 24px;
  height: 110px;
  display: flex;
  align-items: center;
  transition: background 0.3s, box-shadow 0.3s;
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.07);
}

.navbar-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  height: 90px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 4px 6px;
  background: #f8fafc;
}

.nav-link-item {
  font-size: 13px;
  font-weight: 500;
  color: #475569;
  padding: 6px 14px;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}

.nav-link-item:hover,
.nav-link-item.active {
  background: #1A3A5C;
  color: white;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
  padding: 8px 18px;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 8px;
  color: #1A3A5C;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 110px;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 16px 24px 24px;
  z-index: 998;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-link {
  font-size: 16px;
  font-weight: 500;
  color: #334155;
  padding: 12px 16px;
  border-radius: 12px;
  transition: background 0.2s, color 0.2s;
}

.mobile-link:hover {
  background: #f1f5f9;
  color: #1A3A5C;
}

.mobile-link--accent {
  color: var(--accent);
}

@media (max-width: 767px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

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

/* ============================================================
   HERO
   ============================================================ */

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-top: 40px;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: slideHero 12s ease-in-out infinite;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(2, 6, 23, 0.9) 0%, rgba(2, 6, 23, 0.75) 55%, rgba(26, 58, 92, 0.6) 100%);
}

.hero-grid-deco {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 40%, transparent 100%);
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 120, 35, 0.16) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 108px 24px 72px;
  display: flex;
  align-items: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 999px;
  padding: 10px 14px;
  margin-bottom: 16px;
}

.hero-price-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--accent), #d4621a);
  color: white;
  font-size: 14px;
  font-weight: 700;
  border-radius: 12px;
  padding: 9px 18px;
  margin: 0 0 18px 60px;
  box-shadow: 0 4px 24px rgba(240, 120, 35, 0.38);
}

.hero-h1 {
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: white;
  margin-bottom: 22px;
}

.hero-h1 span {
  background: linear-gradient(90deg, #F07823, #fbbf24);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-body {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Hero floating card */
.hero-float-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 24px;
  max-width: 320px;
  margin-left: auto;
  animation: floatY 5s ease-in-out infinite;
  backdrop-filter: blur(12px);
}

.hero-float-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.hero-float-title {
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin-bottom: 6px;
}

.hero-float-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.hero-float-bar-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.hero-float-bar-fill {
  height: 100%;
  width: 85%;
  border-radius: 999px;
  background: linear-gradient(90deg, #F07823, #fbbf24);
}

.hero-float-bar-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}

.hero-float-bar-label {
  font-size: 11px;
  color: var(--text-muted);
}

.hero-float-bar-value {
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
}

/* Hero badge chips */
.hero-chip {
  position: absolute;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 14px 18px;
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.hero-chip--bottom {
  bottom: -20px;
  left: 0;
}

.hero-chip--top {
  top: -20px;
  left: 0;
  animation: floatY 6s ease-in-out infinite 1s;
}

.hero-chip-label {
  font-size: 12px;
  font-weight: 600;
  color: white;
}

.hero-chip-sub {
  font-size: 11px;
  color: var(--text-muted);
}

.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: background 0.3s, transform 0.3s;
}

.hero-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* Pulse dot */
.pulse-dot {
  position: relative;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}

.pulse-dot::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid #22c55e;
  animation: pulse-ring 1.5s ease-out infinite;
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */

.section-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 24px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  line-height: 1.7;
  max-width: 540px;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: 999px;
  padding: 13px 24px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(240, 120, 35, 0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-light);
  border-radius: 999px;
  padding: 13px 24px;
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* ============================================================
   SOBRE — WHITE SECTION
   ============================================================ */

#sobre {
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

#sobre .section-label {
  background: rgba(240, 120, 35, 0.09);
  border-color: rgba(240, 120, 35, 0.22);
}

#sobre .section-title {
  color: #1A3A5C;
}

#sobre .section-subtitle {
  color: #4a5568;
}

#sobre .check-text {
  color: #374151;
}

#sobre .check-text strong {
  color: #1A3A5C;
}

#sobre .check-icon {
  background: rgba(240, 120, 35, 0.1);
  border-color: rgba(240, 120, 35, 0.25);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}

@media (min-width: 992px) {
  .sobre-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.sobre-visual {
  position: relative;
}

.sobre-img-wrapper {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #dde3ea;
  aspect-ratio: 4 / 3;
}

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

.sobre-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 20px 40px rgba(240, 120, 35, 0.3);
}

.sobre-badge-num {
  font-size: 28px;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.sobre-badge-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.3;
}

.sobre-checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

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

.check-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.check-text {
  font-size: 15px;
  line-height: 1.5;
}

.sobre-cta {
  margin-top: 36px;
}

/* ============================================================
   NÚMEROS
   ============================================================ */

#numeros {
  background: var(--bg);
  padding: 0;
}

.numeros-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
}

.numeros-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .numeros-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.numero-item {
  background: var(--bg-2);
  padding: 36px 28px;
  text-align: center;
  transition: background 0.2s;
}

.numero-item:hover {
  background: var(--bg-3);
}

.numero-val {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, #F07823, #fbbf24);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}

.numero-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ============================================================
   SERVIÇOS
   ============================================================ */

#servicos {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

#servicos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent-border), transparent);
}

.servicos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 56px;
}

@media (min-width: 640px) {
  .servicos-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .servicos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.servico-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  cursor: default;
}

.servico-card:hover {
  border-color: var(--accent-border);
  background: var(--accent-dim);
  transform: translateY(-4px);
}

.servico-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(240, 120, 35, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.servico-card:hover::before {
  opacity: 1;
}

.servico-card.featured {
  border-color: var(--accent-border);
  background: linear-gradient(135deg, rgba(240, 120, 35, 0.09), rgba(240, 120, 35, 0.02));
}

.servico-card-img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}

.servico-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s;
}

.servico-card:hover .servico-icon-wrap {
  background: rgba(240, 120, 35, 0.25);
}

.servico-title {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.servico-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.servico-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 999px;
  padding: 4px 10px;
  margin-top: 18px;
}

/* ============================================================
   PAYMENT CIRCLE
   ============================================================ */

.payment-circle-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 48px 0 8px;
}

.payment-circle-outer {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-circle-spin {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #F07823 0%, #fbbf24 25%, #1A3A5C 50%, #F07823 75%, #fbbf24 100%);
  animation: spinGradient 3s linear infinite;
}

.payment-circle-spin::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--bg);
}

.payment-circle-orbit {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  animation: spinGradient 3s linear infinite;
}

.payment-circle-orbit::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(240, 120, 35, 0.9), 0 0 28px rgba(240, 120, 35, 0.5);
}

.payment-circle-inner {
  position: relative;
  z-index: 2;
  width: 196px;
  height: 196px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a3045 0%, #0f2035 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  animation: glowPulse 2.5s ease-in-out infinite;
}

.payment-circle-icon {
  color: var(--accent);
  margin-bottom: 6px;
}

.payment-circle-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-light);
  margin-bottom: 4px;
}

.payment-circle-main {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: white;
  line-height: 1.1;
  margin-bottom: 4px;
}

.payment-circle-main span {
  color: var(--accent);
}

.payment-circle-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-banner {
  background: linear-gradient(135deg, rgba(240, 120, 35, 0.12), rgba(240, 120, 35, 0.03));
  border: 1px solid var(--accent-border);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.cta-banner-title {
  font-size: 20px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.cta-banner-sub {
  font-size: 14px;
  color: var(--text-muted);
}

.cta-banner-cta {
  flex-shrink: 0;
}

/* ============================================================
   GALERIA — LIGHT SECTION
   ============================================================ */

#galeria {
  background: #f1f4f8;
  border-top: 1px solid #dde3ea;
  border-bottom: 1px solid #dde3ea;
}

#galeria .section-label {
  background: rgba(240, 120, 35, 0.09);
  border-color: rgba(240, 120, 35, 0.22);
}

#galeria .section-title {
  color: #1A3A5C;
}

#galeria .section-subtitle {
  color: #4a5568;
}

.galeria-header {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}

.galeria-header .section-label {
  justify-content: center;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 40px;
}

@media (min-width: 640px) {
  .galeria-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .galeria-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.galeria-item {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.galeria-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.galeria-item:hover img {
  transform: scale(1.08);
}

.galeria-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.85), transparent);
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 28px 14px 14px;
  opacity: 0;
  transition: opacity 0.3s;
}

.galeria-item:hover .galeria-label {
  opacity: 1;
}

.galeria-item.featured {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

/* ============================================================
   CONTATO
   ============================================================ */

#contato {
  background: var(--bg-2);
}

.contato-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}

@media (min-width: 992px) {
  .contato-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contato-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.contato-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
  color: inherit;
}

.contato-info-item:hover {
  border-color: var(--accent-border);
  background: var(--accent-dim);
}

.contato-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contato-info-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contato-info-value {
  font-size: 15px;
  color: white;
  font-weight: 500;
  margin-top: 2px;
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px;
}

.form-title {
  font-size: 22px;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.form-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.form-control-custom {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  color: white;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.form-control-custom::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-control-custom:focus {
  border-color: var(--accent-border);
  background: var(--accent-dim);
}

textarea.form-control-custom {
  resize: vertical;
  min-height: 110px;
}

select.form-control-custom option {
  background: #1e293b;
}

.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: 12px;
  padding: 14px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  margin-top: 8px;
  font-family: var(--font);
}

.btn-submit:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(240, 120, 35, 0.3);
}

/* ============================================================
   FOOTER
   ============================================================ */

footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 52px 24px 32px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-logo {
  height: 120px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 300px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-links-title {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer-link {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-link:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.social-icon:hover {
  border-color: var(--accent-border);
  background: var(--accent-dim);
}

/* ============================================================
   WHATSAPP BUTTON & TOAST
   ============================================================ */

.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.toast-success {
  position: fixed;
  bottom: 100px;
  right: 28px;
  background: #16a34a;
  color: white;
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.4);
  z-index: 9999;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}

.toast-success.show {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   FIX: Icon colors — all icons orange (accent)
   ============================================================ */

.servico-icon-wrap iconify-icon,
.check-icon iconify-icon,
.contato-icon iconify-icon,
.hero-float-icon iconify-icon,
.hero-chip iconify-icon,
.section-label iconify-icon,
.servico-tag iconify-icon,
.payment-circle-icon {
  color: var(--accent);
}

.sobre-badge iconify-icon {
  color: #fff;
}


/* Hero slide backgrounds */
.hero-slide--1 {
  background-image: url("images/piscina.jpg");
  animation-delay: 0s;
}

.hero-slide--2 {
  background-image: url("images/rolo.jpg");
  animation-delay: 4s;
}

.hero-slide--3 {
  background-image: url("images/casa.jpg");
  animation-delay: 8s;
}

/* Navbar scroll */
.navbar-scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* Field error */
.field-error {
  border-color: #ef4444 !important;
}

/* SEO pages */
.seo-content-section {
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.seo-content-section .section-label {
  background: rgba(240, 120, 35, 0.09);
  border-color: rgba(240, 120, 35, 0.22);
}

.seo-dark-title {
  color: #1A3A5C;
}

.seo-text-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .seo-text-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.seo-text-block h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1A3A5C;
  margin-bottom: 12px;
}

.seo-text-block p {
  font-size: 15px;
  line-height: 1.7;
  color: #4a5568;
}

.seo-region-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.seo-region-list li {
  font-size: 14px;
  color: #4a5568;
  padding: 10px 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
}

.seo-region-list li strong {
  color: #1A3A5C;
}

.seo-cta-wrap {
  margin-top: 48px;
  text-align: center;
}

.footer-seo-links {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}