/* ============================================================
   SUAREZ PLACAS — style.css
   Mobile-first | CSS Grid + Flexbox | Zero inline styles
   ============================================================ */

/* ============================================================
   1. VARIÁVEIS
   ============================================================ */
:root {
  --color-primary: #0583F2;
  --color-primary-dark: #048ABF;
  --color-tertiary: #04ADBF;
  --color-secondary: #005270;
  --color-accent: #F5A623;
  --color-bg: #F8F8F8;
  --color-white: #FFFFFF;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-border: #E0E0E0;

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
  --space-8: 128px;

  --section-py: 48px;
  --container-max: 1200px;
  --toolbar-h: 40px;
  --header-h: 92px;
  --header-h-scrolled: 86px;
  --header-pill-margin: 10px;
  --radius: 6px;
  --shadow: 0 2px 12px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
  --transition: 0.25s ease;
}

/* ============================================================
   2. RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
  padding-top: calc(var(--toolbar-h) + var(--header-h));
}

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

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

ul, ol { list-style: none; }

button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   3. BASE
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-secondary);
}

h1 { font-size: clamp(1.8rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: var(--space-2); }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; }

/* ============================================================
   4. LAYOUT UTILITÁRIOS
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-3);
}

.section { padding-block: var(--section-py); }

.section--dark {
  background: var(--color-secondary);
  color: var(--color-white);
}
.section--dark h2,
.section--dark h3 { color: var(--color-white); }

.section--gray { background: var(--color-bg); }

.section__header {
  text-align: center;
  margin-bottom: var(--space-5);
}

.section__header h2 { margin-bottom: var(--space-2); }

.section__header p {
  font-size: 1.05rem;
  color: var(--color-text-light);
  max-width: 640px;
  margin-inline: auto;
}

.section--dark .section__header p { color: rgba(255,255,255,0.75); }

/* ============================================================
   5. TOOLBAR
   ============================================================ */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--toolbar-h);
  background: linear-gradient(135deg, #1A1A2E 0%, #0f1422 100%);
  border-bottom: 1px solid rgba(196, 18, 48, 0.45);
  z-index: 1010;
  display: flex;
  align-items: center;
  transition: transform var(--transition);
}

.top-bar.hidden {
  transform: translateY(-100%);
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-3);
  flex-wrap: nowrap;
}

.top-bar__item--phone { margin-right: auto; }

.top-bar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.775rem;
  color: rgba(255,255,255,0.80);
  transition: color var(--transition);
  white-space: nowrap;
}

.top-bar__item a {
  color: inherit;
  transition: color var(--transition);
}

.top-bar__item a:hover,
.top-bar__item:hover { color: var(--color-white); }

.top-bar__icon {
  width: 14px;
  height: 14px;
  fill: var(--color-tertiary);
  flex-shrink: 0;
}

.top-bar__item--wa .top-bar__icon { fill: #25D366; }
.top-bar__item--email .top-bar__icon { fill: var(--color-primary); }

.top-bar__item--wa:hover { color: #25D366; }

@media (max-width: 767px) {
  .top-bar__item--phone { display: none; }
  .top-bar__inner { gap: var(--space-3); }
}

@media (max-width: 479px) {
  .top-bar__item--email { display: none; }
}

/* ============================================================
   6. HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: var(--toolbar-h);
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--color-white);
  height: var(--header-h);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  transition: top var(--transition), height var(--transition), box-shadow var(--transition),
              background var(--transition), border-color var(--transition);
}

.site-header.scrolled {
  top: 0;
  height: var(--header-h-scrolled);
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  backdrop-filter: blur(16px) saturate(1.3);
  border-bottom: 2px solid rgba(100, 180, 230, 0.35);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.13);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo img { height: 60px; width: auto; transition: height var(--transition); }
.site-header.scrolled .header__logo img { height: 55px; }

/* Nav principal */
.site-nav { display: none; }

.site-nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.site-nav__item { position: relative; }

.site-nav__link {
  display: block;
  padding: var(--space-1) var(--space-2);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}

.site-nav__link:hover,
.site-nav__item.active > .site-nav__link {
  color: var(--color-primary);
  background: rgba(5,131,242,0.07);
}

/* ============================================================
   7. MEGA MENU
   ============================================================ */
.mega-menu {
  position: fixed;
  top: calc(var(--toolbar-h) + var(--header-h));
  left: 0;
  right: 0;
  background: var(--color-white);
  border-top: 3px solid var(--color-primary);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  padding: var(--space-4) 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  /* delay só no fechar — evita piscar ao mover o mouse do link ao painel */
  transition: opacity 0.2s ease 0.12s, transform 0.2s ease 0.12s;
  z-index: 990;
}

.site-header.scrolled .mega-menu {
  top: var(--header-h-scrolled);
}

/* Ponte invisível: estende a área hover do item até o painel */
.site-nav__item--has-mega::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 40px;
}

/* Controlado por JS (.mega-open) + fallback teclado (:focus-within) */
.site-nav__item--has-mega.mega-open .mega-menu,
.site-nav__item--has-mega:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.mega-menu__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.mega-menu__item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--color-text);
  transition: background var(--transition), color var(--transition);
}

.mega-menu__item:hover {
  background: rgba(5,131,242,0.06);
}

.mega-menu__icon {
  width: 40px;
  height: 40px;
  background: rgba(5,131,242,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}

.mega-menu__item:hover .mega-menu__icon {
  background: rgba(5,131,242,0.15);
}

.mega-menu__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mega-menu__text { min-width: 0; }

.mega-menu__name {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text);
  transition: color var(--transition);
}

.mega-menu__item:hover .mega-menu__name { color: var(--color-primary); }

.mega-menu__desc {
  display: block;
  font-size: 0.775rem;
  color: var(--color-text-light);
  margin-top: 2px;
  line-height: 1.4;
}

/* CTA header */
.header__cta {
  display: none;
  padding: 10px 20px;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.header__cta:hover { background: var(--color-primary-dark); }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.hamburger:hover { background: var(--color-bg); }

.hamburger__line {
  width: 100%;
  height: 2px;
  background: var(--color-secondary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.active .hamburger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active .hamburger__line:nth-child(2) { opacity: 0; }
.hamburger.active .hamburger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  top: calc(var(--toolbar-h) + var(--header-h));
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--color-white);
  z-index: 999;
  overflow-y: auto;
  padding: var(--space-3);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-nav.open { transform: translateX(0); }

body.page-scrolled .mobile-nav { top: var(--header-h-scrolled); }

.mobile-nav__list { display: flex; flex-direction: column; gap: 2px; }

.mobile-nav__link {
  display: block;
  padding: 14px var(--space-2);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}

.mobile-nav__link:hover { background: var(--color-bg); color: var(--color-primary); }

.mobile-nav__toggle {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav__toggle-icon {
  font-size: 0.8rem;
  transition: transform var(--transition);
  color: var(--color-text-light);
}

.mobile-nav__toggle[aria-expanded="true"] .mobile-nav__toggle-icon {
  transform: rotate(180deg);
}

.mobile-nav__submenu {
  padding-left: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: var(--space-1);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.mobile-nav__submenu.open { max-height: 700px; }

.mobile-nav__submenu a {
  display: block;
  padding: 10px var(--space-2);
  font-size: 0.875rem;
  color: var(--color-text-light);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}

.mobile-nav__submenu a:hover { background: var(--color-bg); color: var(--color-primary); }

.mobile-nav__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--space-3);
  padding: 14px;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
}

/* ============================================================
   8. HERO (HOME)
   ============================================================ */
.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-secondary);
}

.hero__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,82,112,0.88) 0%, rgba(5,131,242,0.55) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-block: var(--space-7) var(--space-6);
}

.hero__badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--color-accent);
  color: var(--color-secondary);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 30px;
  margin-bottom: var(--space-3);
}

.hero__title {
  color: var(--color-white);
  margin-bottom: var(--space-3);
}

.hero__title span { color: var(--color-accent); }

.hero__text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin-bottom: var(--space-4);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

/* ============================================================
   8b. HERO NOVO (HOME) — layout split com imagem
   ============================================================ */
.hero-new {
  display: flex;
  flex-direction: column;
  background: #edf2f7;
  overflow: hidden;
}

.hero-new__left {
  order: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-5) var(--space-3);
  position: relative;
  isolation: isolate;
}

.hero-new__left::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26, 26, 46, 0.5) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  opacity: 0.13;
  -webkit-mask-image: radial-gradient(ellipse 80% 75% at 60% 50%, black 20%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 75% at 60% 50%, black 20%, transparent 75%);
  pointer-events: none;
  z-index: -1;
}

.hero-new__right {
  order: 1;
  height: 260px;
  overflow: hidden;
}

.hero-new__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.hero-new__badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 6px;
  margin-bottom: var(--space-3);
  width: fit-content;
}

.hero-new__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: #0a1628;
  line-height: 1.1;
  margin-bottom: var(--space-3);
}
.hero-new__title span { color: var(--color-primary); }

.hero-new__text {
  font-size: 1rem;
  color: #4a5568;
  max-width: 500px;
  margin-bottom: var(--space-4);
  line-height: 1.75;
}

.hero-new__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
}

.hero-new__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border: 1.5px solid #cdd8e8;
  border-radius: 12px;
  background: var(--color-white);
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.hero-new__phone:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(5,131,242,0.12);
}
.hero-new__phone svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: var(--color-primary);
}
.hero-new__phone strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #0a1628;
  line-height: 1.2;
}
.hero-new__phone small {
  font-size: 0.7rem;
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ============================================================
   9. BOTÕES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  min-height: 48px;
}

.btn:active { transform: scale(0.98); }

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(5,131,242,0.35);
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 6px 20px rgba(5,131,242,0.45);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.6);
}

.btn--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--color-white);
}

.btn--outline-dark {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn--outline-dark:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn--accent {
  background: var(--color-accent);
  color: var(--color-secondary);
}

.btn--accent:hover { background: #e09410; }

/* WhatsApp green animated CTA */
.btn.btn--wa,
.header__cta.btn--wa {
  position: relative;
  background: linear-gradient(89deg, #056362, #03A696, #056362, #96D9D2);
  background-size: 400% 200%;
  animation: textura-wa 2s ease infinite;
  color: #fff;
  border: none;
  border-radius: 500px;
  box-shadow: 0 4px 16px rgba(3, 166, 150, 0.35);
  overflow: visible;
}

.btn.btn--wa::before,
.header__cta.btn--wa::before {
  content: "";
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  border-radius: 500px;
  border: 1px solid rgba(150, 217, 210, 0.4);
  background: rgba(150, 217, 210, 0.15);
  pointer-events: none;
}

.btn.btn--wa:hover,
.header__cta.btn--wa:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 24px rgba(3, 166, 150, 0.5);
}

.btn--wa::after,
.mobile-nav__cta::after {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  align-self: center;
  flex-shrink: 0;
}

/* Blue animated CTA — navigation (sem ícone WA) */
.btn--nav {
  position: relative;
  background: linear-gradient(89deg, #005270, #0583F2, #005270, #048ABF);
  background-size: 400% 200%;
  animation: textura-nav 2s ease infinite;
  color: #fff;
  border: none;
  border-radius: 500px;
  box-shadow: 0 4px 16px rgba(5, 131, 242, 0.35);
  overflow: visible;
}

.btn--nav::before {
  content: "";
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  border-radius: 500px;
  border: 1px solid rgba(5, 131, 242, 0.4);
  background: rgba(5, 131, 242, 0.15);
  pointer-events: none;
}

.btn--nav:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 24px rgba(5, 131, 242, 0.5);
}

@keyframes textura-nav {
  0%   { background-position: 0 0; }
  100% { background-position: 100% 0; }
}

@keyframes textura-wa {
  0%   { background-position: 0 0; }
  100% { background-position: 100% 0; }
}

/* ============================================================
   10. BREADCRUMB
   ============================================================ */
.breadcrumb {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding-block: 12px;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.breadcrumb__list li + li::before {
  content: '›';
  margin-right: 4px;
  color: var(--color-border);
}

.breadcrumb__list a { color: var(--color-text-light); transition: color var(--transition); }
.breadcrumb__list a:hover { color: var(--color-primary); }
.breadcrumb__list li:last-child { color: var(--color-primary); font-weight: 600; }

/* ============================================================
   11. PAGE BANNER (páginas de produto)
   ============================================================ */
.page-banner {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #006b8f 100%);
  padding-block: var(--space-4) var(--space-4);
  text-align: center;
}

.page-banner h1 {
  color: var(--color-white);
  margin-bottom: var(--space-2);
  font-size: clamp(2.35rem, 4vw, 1.80rem);
}

.page-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 0;
}

/* Breadcrumb dentro do page-banner */
.page-banner .breadcrumb {
  background: transparent;
  border: none;
  padding: var(--space-2) 0 0;
}

.page-banner .breadcrumb__list {
  justify-content: center;
  color: rgba(255,255,255,0.55);
}

.page-banner .breadcrumb__list a {
  color: rgba(255,255,255,0.55);
}

.page-banner .breadcrumb__list a:hover { color: var(--color-white); }

.page-banner .breadcrumb__list li:last-child {
  color: rgba(255,255,255,0.80);
  font-weight: 500;
}

.page-banner .breadcrumb__list li + li::before {
  color: rgba(255,255,255,0.30);
}

/* ============================================================
   12. DIFERENCIAIS
   ============================================================ */
.diferenciais__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

.diferencial-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-3);
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 3px solid transparent;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.diferencial-card:hover {
  border-top-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.diferencial-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(5,131,242,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-2);
  transition: background var(--transition);
}

.diferencial-card:hover .diferencial-card__icon { background: rgba(5,131,242,0.16); }

.diferencial-card__icon svg { width: 26px; height: 26px; fill: var(--color-primary); }

.diferencial-card h3 { font-size: 1rem; margin-bottom: var(--space-1); }

.diferencial-card p { font-size: 0.875rem; color: var(--color-text-light); }

/* ============================================================
   13. PRODUTOS GRID (home)
   ============================================================ */
.produtos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}

.produto-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-secondary);
}

.produto-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.produto-card:hover img { transform: scale(1.07); opacity: 0.75; }

.produto-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.42) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-2);
  transition: background var(--transition);
}

.produto-card:hover .produto-card__overlay {
  background: linear-gradient(0deg, rgba(5,131,242,0.88) 0%, rgba(0,82,112,0.50) 100%);
}

.produto-card__title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.produto-card__arrow {
  width: 28px;
  height: 28px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  transform: translateY(6px);
  opacity: 0;
  transition: transform var(--transition), opacity var(--transition);
}

.produto-card:hover .produto-card__arrow { transform: translateY(0); opacity: 1; }

.produto-card__arrow svg { width: 14px; height: 14px; fill: none; stroke: white; stroke-width: 2; }

/* ============================================================
   14. ABOUT SECTION (home)
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: center;
}

.about__badge {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(5,131,242,0.10);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 30px;
  margin-bottom: var(--space-2);
}

.about__text { font-size: 0.95rem; line-height: 1.75; color: var(--color-text-light); }
.about__text p { margin-bottom: var(--space-2); }

.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.stat {
  padding: var(--space-3);
  background: var(--color-bg);
  border-radius: var(--radius);
  border-left: 3px solid var(--color-primary);
}

.stat__number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.stat__label { font-size: 0.8rem; color: var(--color-text-light); }

.about__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__image img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   15. CONDOMÍNIOS SECTION (home)
   ============================================================ */
.condominios__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: center;
}

.condominios__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.condominios__image img { width: 100%; height: auto; object-fit: cover; }

.condominios__content h2 { color: var(--color-white); margin-bottom: var(--space-2); }

.condominios__content p {
  color: rgba(255,255,255,0.80);
  font-size: 0.95rem;
  margin-bottom: var(--space-2);
}

/* ============================================================
   16. LAYOUT PRODUTO (página de produto — sidebar + content)
   ============================================================ */
.product-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

.product-layout__main { min-width: 0; }

/* ============================================================
   17. GALERIA DE PRODUTOS
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-secondary);
  cursor: pointer;
}

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

.gallery-item:hover img { transform: scale(1.05); opacity: 0.85; }

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5,131,242,0.55);
  opacity: 0;
  transition: opacity var(--transition);
}

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

.gallery-item__overlay svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: white;
  stroke-width: 2;
}

.gallery-item__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, transparent 100%);
  color: white;
  font-size: 0.75rem;
  padding: 20px 10px 8px;
  opacity: 0;
  transition: opacity var(--transition);
}

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

/* ============================================================
   18. LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active { opacity: 1; pointer-events: auto; }

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 0 60px rgba(0,0,0,0.6);
}

.lightbox__close {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  transition: background var(--transition);
}

.lightbox__close:hover { background: var(--color-primary); }

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  transition: background var(--transition);
}

.lightbox__prev { left: var(--space-2); }
.lightbox__next { right: var(--space-2); }
.lightbox__prev:hover,
.lightbox__next:hover { background: var(--color-primary); }

.lightbox__caption {
  position: absolute;
  bottom: var(--space-3);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.65);
  color: white;
  font-size: 0.85rem;
  padding: 8px 20px;
  border-radius: 30px;
  white-space: nowrap;
}

/* ============================================================
   19. SIDEBAR DE PRODUTOS
   ============================================================ */
.sidebar__widget {
  background: var(--color-bg);
  border-radius: var(--radius);
  padding: var(--space-3);
  margin-bottom: var(--space-3);
}

.sidebar__widget h3 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  padding-bottom: var(--space-2);
  border-bottom: 2px solid var(--color-primary);
  margin-bottom: var(--space-2);
}

.sidebar__products a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  font-size: 0.875rem;
  color: var(--color-text);
  border-radius: 4px;
  transition: background var(--transition), color var(--transition);
}

.sidebar__products a:hover { background: var(--color-white); color: var(--color-primary); }

.sidebar__products a.active {
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
}

.sidebar__products a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
  opacity: 0.6;
}

.sidebar__cta {
  background: var(--color-primary);
  border-radius: var(--radius);
  padding: var(--space-3);
  text-align: center;
}

.sidebar__cta h3 { color: var(--color-white); font-size: 1rem; margin-bottom: var(--space-1); }
.sidebar__cta p { color: rgba(255,255,255,0.85); font-size: 0.85rem; margin-bottom: var(--space-2); }
.sidebar__cta .btn { width: 100%; justify-content: center; padding-left: 14px; padding-right: 14px; font-size: 0.8rem; white-space: nowrap; }

/* ============================================================
   20. CONTENT SECTION (texto da página de produto)
   ============================================================ */
.product-content { font-size: 0.95rem; line-height: 1.75; }

.product-content h2 {
  font-size: 1.4rem;
  color: var(--color-secondary);
  margin: var(--space-4) 0 var(--space-2);
}

.product-content h2:first-child { margin-top: 0; }

.product-content p { margin-bottom: var(--space-2); color: var(--color-text-light); }

.product-content ul {
  list-style: disc;
  padding-left: var(--space-3);
  margin-bottom: var(--space-2);
}

.product-content ul li {
  margin-bottom: var(--space-1);
  color: var(--color-text-light);
}

.product-cta-box {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #006b8f 100%);
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-3);
  text-align: center;
  margin-top: var(--space-4);
}

.product-cta-box h3 { color: var(--color-white); margin-bottom: var(--space-2); }
.product-cta-box p { color: rgba(255,255,255,0.80); font-size: 0.9rem; margin-bottom: var(--space-3); }

/* ============================================================
   21. FORMULÁRIO DE CONTATO
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--space-3);
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  min-height: 48px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(5,131,242,0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form__submit { width: 100%; justify-content: center; }

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-info__item:hover .contact-info__icon {
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.contact-info__icon svg { width: 22px; height: 22px; }

/* Ícone por tipo */
.contact-info__icon--address,
.contact-info__icon--phone,
.contact-info__icon--email    { background: rgba(26,26,46,0.08); }
.contact-info__icon--address svg,
.contact-info__icon--phone   svg,
.contact-info__icon--email   svg { fill: #1A1A2E; }

.contact-info__icon--whatsapp { background: rgba(37,211,102,0.12); }
.contact-info__icon--whatsapp svg { fill: #25D366; }

.contact-info__text h4 { font-size: 0.875rem; font-weight: 700; margin-bottom: 3px; color: var(--color-text); }
.contact-info__text p, .contact-info__text a { font-size: 0.9rem; color: var(--color-text-light); }
.contact-info__text a:hover { color: var(--color-primary); }

/* ============================================================
   22. OBRIGADO PAGE
   ============================================================ */
.obrigado {
  min-height: 70vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding-block: var(--space-7);
}

.obrigado__icon {
  width: 80px;
  height: 80px;
  background: rgba(5,131,242,0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-3);
}

.obrigado__icon svg { width: 40px; height: 40px; fill: var(--color-primary); }

.obrigado h1 { margin-bottom: var(--space-2); }
.obrigado p { font-size: 1.05rem; color: var(--color-text-light); margin-bottom: var(--space-4); }

/* ============================================================
   23. FOOTER
   ============================================================ */
.site-footer {
  background: #141414;
  color: rgba(255,255,255,0.80);
  padding-top: var(--space-6);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.footer__brand img { height: 44px; margin-bottom: var(--space-2); filter: brightness(0) invert(1); }

.footer__brand p { font-size: 0.875rem; line-height: 1.7; color: rgba(255,255,255,0.65); }

.footer__contact { display: flex; flex-direction: column; gap: 10px; margin-top: var(--space-3); }

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--transition);
}

.footer__contact-item:hover { color: var(--color-white); }

.footer__contact-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: rgba(255,255,255,0.5);
  transition: fill var(--transition);
}

.footer__contact-item--wa .footer__contact-icon { fill: #25D366; }
.footer__contact-item--email .footer__contact-icon { fill: var(--color-primary); }

.footer__contact-item--wa:hover { color: #25D366; }
.footer__contact-item--wa:hover .footer__contact-icon { fill: #25D366; }

.footer__col h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-white);
  margin-bottom: var(--space-2);
  padding-bottom: var(--space-1);
  border-bottom: 2px solid var(--color-primary);
  display: inline-block;
}

.footer__col ul { display: flex; flex-direction: column; gap: 8px; }

.footer__col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition), padding-left var(--transition);
}

.footer__col a:hover { color: var(--color-white); padding-left: 4px; }

.footer__col ul li a::before {
  content: '›';
  margin-right: 6px;
  color: var(--color-primary);
  font-weight: 700;
  transition: margin-right var(--transition);
}

.footer__col ul li a:hover::before { margin-right: 8px; }

.footer__col address { font-style: normal; font-size: 0.875rem; line-height: 1.8; }

.footer__bottom {
  padding-block: var(--space-3);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.footer__bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin: 0; }

.footer__bottom a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer__bottom a:hover { color: var(--color-white); }

.footer__bottom img { height: 56px; width: auto; opacity: 0.85; transition: opacity var(--transition); }
.footer__bottom img:hover { opacity: 1; }

/* ============================================================
   24. WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 800;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

.whatsapp-float svg { width: 28px; height: 28px; fill: white; }


/* ============================================================
   26. ANIMAÇÕES DE SCROLL
   ============================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

/* ============================================================
   27. EMPRESA PAGE (standalone)
   ============================================================ */
.empresa-hero {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #006b8f 100%);
  padding-block: var(--space-6) var(--space-5);
  text-align: center;
}

.empresa-hero h1 { color: var(--color-white); }
.empresa-hero p { color: rgba(255,255,255,0.75); max-width: 600px; margin-inline: auto; font-size: 1rem; }

/* ============================================================
   28. RESPONSIVO — 576px
   ============================================================ */
@media (min-width: 576px) {
  :root { --section-py: 60px; }

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

/* ============================================================
   29. RESPONSIVO — 768px
   ============================================================ */
@media (min-width: 768px) {
  :root { --section-py: 80px; }

  .site-nav { display: flex; }
  .hamburger { display: none; }
  .header__cta { display: inline-flex; align-items: center; gap: 8px; }

  .hero { min-height: 80vh; }
  .hero__content { padding-block: var(--space-8) var(--space-7); }
  .hero__text { font-size: 1.1rem; }

  .hero-new {
    flex-direction: row;
    height: clamp(520px, 90vh, 680px);
  }
  .hero-new__left {
    flex: 0 0 50%;
    order: 1;
    padding: var(--space-6) var(--space-5) var(--space-6) clamp(var(--space-4), 6vw, 88px);
  }
  .hero-new__right {
    flex: 0 0 50%;
    order: 2;
    height: auto;
  }

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

  .about__grid { grid-template-columns: 1fr 1fr; }
  .condominios__grid { grid-template-columns: 1fr 1fr; }

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

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

  .gallery-grid { grid-template-columns: repeat(3, 1fr); }

  .product-layout { grid-template-columns: 1fr 280px; }
  .product-layout__main { order: 1; }
  .product-layout__sidebar { order: 2; }

  .mega-menu__grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   30. RESPONSIVO — 992px
   ============================================================ */
@media (min-width: 992px) {
  .diferenciais__grid { grid-template-columns: repeat(4, 1fr); }
  .produtos-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

/* ============================================================
   31. RESPONSIVO — 1200px
   ============================================================ */
@media (min-width: 1200px) {
  :root { --section-py: 100px; }
  .hero { min-height: 85vh; }
  .product-layout { grid-template-columns: 1fr 300px; }
}

/* ============================================================
   32. ACESSIBILIDADE
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .animate-on-scroll { opacity: 1; transform: none; }
}

/* ============================================================
   33. SCROLLBAR PERSONALIZADA
   ============================================================ */

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #0583F2 #0d0d0d;
}

/* Chrome / Edge / Safari */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0d0d0d;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #04ADBF 0%, #0583F2 50%, #005270 100%);
  border-radius: 4px;
  border: 2px solid #0d0d0d;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #0583F2 0%, #048ABF 100%);
}

/* ============================================================
   34. PÁGINA DE CONTATO — ajustes e utilitários
   ============================================================ */
.empresa-hero .breadcrumb { margin-top: var(--space-3); }

.contact-section__lead {
  color: var(--color-text-light);
  margin-bottom: 2rem;
}

.required-mark { color: var(--color-primary); }

.form-recaptcha { margin-bottom: 1.5rem; }

.contact-info__wa-btn { margin-top: 1.5rem; }

/* ============================================================
   35. OVERLAY DE ENVIO DO FORMULÁRIO
   ============================================================ */
.form-sending-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.form-sending-overlay__box {
  background: var(--color-white);
  border-radius: 12px;
  padding: 2.5rem 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
}

.form-sending-overlay__box p {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-secondary);
  margin: 0;
}

.form-sending-overlay__spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(5, 131, 242, 0.15);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
