/* SGMS Consultoria - Elegancia e nobreza */

:root {
  --white: #FAFAFA;
  --off-white: #F6F6F4;
  --cream: #FAF7F2;
  --champagne: #F0EAE0;
  --ivory: #E8E0D4;
  --petroleum: #152535;
  --petroleum-light: #243B4D;
  --petroleum-dark: #0A1822;
  --gold: #BFA15A;
  --gold-light: #E2D4B0;
  --gold-muted: #C9B07A;
  --gold-dark: #7A6230;
  --gold-shine: #F2EBD8;
  --gold-glow: rgba(191, 161, 90, 0.14);
  --band-gray: #E6DFD4;
  --band-blue: #D5DCE4;
  --text: #2A3038;
  --text-light: #5C6570;
  --border: #D5CEC2;
  --border-gold: rgba(191, 161, 90, 0.28);
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Cinzel', Georgia, 'Times New Roman', serif;
  --font-noble: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --container: 1080px;
  --shadow-soft: 0 12px 40px rgba(10, 24, 34, 0.06);
  --shadow-gold: 0 12px 40px rgba(191, 161, 90, 0.08);
  --ease-noble: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-slow: 1.4s;
  --duration-reveal: 1.1s;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--cream);
  background-image:
    radial-gradient(ellipse 70% 45% at 50% -5%, rgba(191,161,90,0.05) 0%, transparent 55%),
    url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='0.4' fill='%23BFA15A' opacity='0.05'/%3E%3C/svg%3E");
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ---- Cabecalho premium: fundo escuro + dourado ---- */
.brand-hero {
  position: relative;
  background: linear-gradient(168deg, var(--petroleum-dark) 0%, var(--petroleum) 42%, #101E2A 100%);
  padding: 64px 0 52px;
  text-align: center;
  overflow: hidden;
}

.brand-hero::before {
  content: '';
  position: absolute;
  inset: 24px 32px;
  border: 1px solid rgba(191,161,90,0.12);
  border-radius: 2px;
  pointer-events: none;
  opacity: 0;
  animation: frameReveal 2s var(--ease-noble) 0.3s forwards;
}

.brand-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark) 15%, var(--gold) 50%, var(--gold-dark) 85%, transparent);
  opacity: 0.55;
}

.brand-hero__texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 45% 70% at 12% 45%, rgba(191,161,90,0.09) 0%, transparent 60%),
    radial-gradient(ellipse 35% 50% at 90% 20%, rgba(226,212,176,0.05) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='72' height='72' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 36h72M36 0v72' stroke='%23BFA15A' stroke-width='0.45' opacity='0.16'/%3E%3C/svg%3E");
  background-size: 100% 100%, 100% 100%, 72px 72px;
  transition: transform 1.2s var(--ease-noble);
  animation: heroGridDrift 18s ease-in-out infinite alternate;
}

.brand-hero__glow {
  position: absolute;
  inset: -15%;
  pointer-events: none;
  background:
    radial-gradient(circle at 28% 38%, rgba(191,161,90,0.1) 0%, transparent 32%),
    radial-gradient(circle at 78% 22%, rgba(226,212,176,0.05) 0%, transparent 28%);
  transition: transform 1.4s var(--ease-noble);
  animation: glowFloat 14s ease-in-out infinite alternate;
}

.brand-hero__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInNoble var(--duration-slow) var(--ease-noble) 0.5s forwards;
}

.brand-hero__ornament-line {
  display: block;
  width: clamp(48px, 12vw, 88px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(191,161,90,0.5), transparent);
  transform: scaleX(0);
  animation: lineExpand 1.6s var(--ease-noble) 0.7s forwards;
}

.brand-hero__ornament-diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  box-shadow: 0 0 10px rgba(191,161,90,0.4);
  opacity: 0;
  animation: fadeInNoble 1s var(--ease-noble) 1s forwards;
}

.brand-hero__content {
  position: relative;
  z-index: 1;
}

.brand-logo {
  margin-bottom: 28px;
  animation: fadeInNoble var(--duration-slow) var(--ease-noble) 0.15s forwards;
  opacity: 0;
}

.brand-logo__wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.brand-logo__sgms-wrap {
  position: relative;
  display: inline-block;
  padding-left: 28px;
}

.brand-logo__line {
  display: block;
  width: clamp(32px, 9vw, 56px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(191,161,90,0.6) 50%, transparent);
}

.brand-logo__heartbeat {
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 90px;
  height: 60px;
  pointer-events: none;
}

.brand-logo__heartbeat path:first-child {
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  animation: drawHeartbeat 3s var(--ease-noble) forwards 0.8s;
}

.brand-logo__sgms {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 4.6rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  background: linear-gradient(170deg, var(--gold-shine) 0%, var(--gold-muted) 35%, var(--gold) 55%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 16px rgba(191,161,90,0.25));
  background-size: 200% auto;
  animation: goldShimmer 12s ease-in-out infinite;
}

.brand-logo__consultoria {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-noble);
  font-size: clamp(0.85rem, 2.2vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.brand-tagline {
  font-family: var(--font-noble);
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.14em;
  color: rgba(226, 212, 176, 0.88);
  margin-bottom: 40px;
  line-height: 1.7;
  animation: fadeInNoble var(--duration-slow) var(--ease-noble) 0.55s forwards;
  opacity: 0;
}

.brand-tagline__dot {
  display: block;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  margin: 0 auto 16px;
  box-shadow: 0 0 8px rgba(191,161,90,0.35);
  opacity: 0.85;
}

.brand-services__list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  max-width: 960px;
  margin: 0 auto;
  border-top: 1px solid rgba(191,161,90,0.22);
  padding-top: 32px;
  animation: fadeInNoble var(--duration-slow) var(--ease-noble) 0.75s forwards;
  opacity: 0;
}

.brand-services__item {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 0 14px;
  min-width: 0;
  transition: transform 0.6s var(--ease-noble);
}

.brand-services__item.is-hovered,
.brand-services__item:hover {
  transform: translateY(-2px);
}

.brand-services__item:nth-child(1) { animation: fadeInNoble 1s 0.9s var(--ease-noble) forwards; opacity: 0; }
.brand-services__item:nth-child(2) { animation: fadeInNoble 1s 1.02s var(--ease-noble) forwards; opacity: 0; }
.brand-services__item:nth-child(3) { animation: fadeInNoble 1s 1.14s var(--ease-noble) forwards; opacity: 0; }
.brand-services__item:nth-child(4) { animation: fadeInNoble 1s 1.26s var(--ease-noble) forwards; opacity: 0; }
.brand-services__item:nth-child(5) { animation: fadeInNoble 1s 1.38s var(--ease-noble) forwards; opacity: 0; }

.brand-services__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 8%;
  height: 84%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold-muted) 20%, var(--gold-light) 50%, var(--gold-muted) 80%, transparent);
  opacity: 0.65;
}

.brand-services__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(191,161,90,0.06);
  border: 1px solid rgba(191,161,90,0.2);
  border-radius: 50%;
  box-shadow: inset 0 1px 0 rgba(226,212,176,0.1);
  transition: border-color 0.6s var(--ease-noble), box-shadow 0.6s var(--ease-noble), background 0.6s ease;
}

.brand-services__item.is-hovered .brand-services__icon,
.brand-services__item:hover .brand-services__icon {
  border-color: rgba(191,161,90,0.45);
  box-shadow: 0 4px 20px rgba(191,161,90,0.15), inset 0 1px 0 rgba(226,212,176,0.15);
  background: rgba(191,161,90,0.1);
}

.brand-services__icon svg {
  width: 28px;
  height: 28px;
}

.brand-services__item span {
  font-family: var(--font-noble);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(226, 212, 176, 0.82);
  line-height: 1.5;
  text-align: center;
}

/* ---- Faixa Especialista ---- */
.specialist-band {
  position: relative;
  background: linear-gradient(180deg, var(--champagne) 0%, var(--ivory) 50%, var(--champagne) 100%);
  padding: 48px 0 52px;
  border-top: 1px solid var(--border-gold);
  overflow: hidden;
}

.specialist-band__texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 0% 50%, rgba(201,169,98,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 100% 80%, rgba(26,51,68,0.04) 0%, transparent 55%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23C9A962' stroke-width='0.2' opacity='0.12'/%3E%3C/svg%3E");
  animation: textureDrift 25s ease-in-out infinite alternate-reverse;
}

.specialist-band__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 28px;
  align-items: stretch;
}

.tv-web__screen {
  position: relative;
  background: var(--petroleum-dark);
  border: 2px solid var(--gold-dark);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(201,169,98,0.2);
}

.tv-web__embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.tv-web__embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.tv-web__screen::before {
  display: none;
}

.tv-web__scan {
  display: none;
}

.tv-web__play {
  position: relative;
  z-index: 1;
  color: var(--gold-light);
  filter: drop-shadow(0 2px 8px rgba(191,161,90,0.3));
  display: flex;
  align-items: center;
  justify-content: center;
}

.tv-web__play-ring {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(191,161,90,0.35);
  border-radius: 50%;
  animation: playRing 4s var(--ease-noble) infinite;
}

.tv-web__scan {
  display: none;
}

.tv-web__label {
  position: relative;
  z-index: 1;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tv-web__desc {
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

.specialist-profile {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background: linear-gradient(150deg, var(--white) 0%, var(--cream) 100%);
  border-radius: 4px;
  padding: 24px 28px;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.7s var(--ease-noble);
}

.specialist-profile.is-visible:hover {
  box-shadow: var(--shadow-soft), var(--shadow-gold);
}

.specialist-profile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, var(--gold-dark));
}

.specialist-profile::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201,169,98,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.specialist-info {
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: none;
  order: 1;
}

.specialist-info__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
  padding: 4px 10px;
  background: linear-gradient(135deg, rgba(201,169,98,0.15), rgba(232,213,168,0.2));
  border: 1px solid var(--border-gold);
  border-radius: 4px;
}

.specialist-info__name {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--petroleum);
  margin-bottom: 10px;
  line-height: 1.3;
}

.specialist-info__list li {
  position: relative;
  padding: 5px 0 5px 16px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.45;
}

.specialist-info__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.specialist-photo {
  width: 156px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--gold-muted);
  box-shadow: 0 8px 28px rgba(10,24,34,0.1);
  order: 2;
  transition: box-shadow 0.7s var(--ease-noble);
}

.specialist-profile.is-visible .specialist-photo {
  animation: photoReveal 1.2s var(--ease-noble) forwards;
}

.specialist-profile:hover .specialist-photo {
  box-shadow: 0 12px 36px rgba(10,24,34,0.12), 0 0 24px rgba(191,161,90,0.1);
}

.specialist-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 18%;
}

/* ---- Quem Somos ---- */
.about-band {
  position: relative;
  background: linear-gradient(180deg, var(--band-gray) 0%, var(--champagne) 100%);
  padding: 56px 0;
  overflow: hidden;
}

.about-band__texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 40% 60% at 90% 20%, rgba(201,169,98,0.08) 0%, transparent 55%),
    url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='0.5' fill='%23C9A962' opacity='0.1'/%3E%3C/svg%3E");
}

.about-band__inner {
  position: relative;
  z-index: 1;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.4vw, 1.3rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--petroleum);
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 16px;
}

.section-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light) 60%, transparent);
  border-radius: 2px;
  transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-heading.is-visible::after {
  width: 64px;
  transition: width 1.2s var(--ease-noble);
}

.section-heading--light::after {
  background: linear-gradient(90deg, var(--gold), rgba(255,255,255,0.2));
}

.contact-band .section-heading::after {
  left: 50%;
  transform: translateX(-50%);
}

.contact-band .section-heading.is-visible::after {
  width: 72px;
}

.section-heading--dark { color: var(--text); }
.section-heading--light { color: var(--gold-light); }

.site-footer__logo {
  width: 120px;
  height: auto;
  margin: 0 auto 12px;
  filter: drop-shadow(0 2px 8px rgba(201,169,98,0.2));
}

.about-band__text p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-band__text p:last-child { margin-bottom: 0; }

.about-band__text strong {
  color: var(--petroleum);
  background: linear-gradient(180deg, transparent 70%, rgba(201,169,98,0.2) 70%);
}

/* ---- Servicos ---- */
.services-section {
  position: relative;
  background: var(--cream);
  padding: 56px 0 60px;
  overflow: hidden;
}

.services-section__texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(201,169,98,0.09) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 95% 10%, rgba(26,51,68,0.04) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='120' height='120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 120L120 0' stroke='%23C9A962' stroke-width='0.3' opacity='0.05'/%3E%3C/svg%3E");
}

.services-section .container {
  position: relative;
  z-index: 1;
}

.services-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.service-box {
  background: linear-gradient(165deg, var(--white) 0%, var(--cream) 100%);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.7s var(--ease-noble), transform 0.7s var(--ease-noble), border-color 0.7s ease;
  position: relative;
  overflow: hidden;
}

.service-box:hover {
  box-shadow: var(--shadow-soft), var(--shadow-gold);
  transform: translateY(-2px);
  border-color: rgba(191,161,90,0.42);
}

.service-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-muted), var(--gold), var(--gold-muted), transparent);
  opacity: 0;
  transition: opacity 0.7s var(--ease-noble);
}

.service-box:hover::before {
  opacity: 1;
}

.service-box--wide {
  grid-column: 1 / -1;
}

.service-box__title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--petroleum);
  margin-bottom: 10px;
  padding-bottom: 0;
  border-bottom: none;
}

.service-box__subtitle {
  font-family: var(--font-noble);
  font-size: 15px;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.55;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-gold);
}

.service-box__title + .service-box__list,
.service-box__subtitle + .service-box__list {
  margin-top: 0;
}

.service-box__title:not(:has(+ .service-box__subtitle)) {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-gold);
}

.service-box__list li {
  position: relative;
  padding: 5px 0 5px 16px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
}

.service-box__list li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.service-box__list--cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}

/* ---- Missao, Visao, Proposito ---- */
.mvp-section {
  position: relative;
  background: linear-gradient(180deg, var(--champagne) 0%, var(--ivory) 50%, var(--champagne) 100%);
  padding: 60px 0;
  overflow: hidden;
}

.mvp-section__texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 45% 50% at 15% 50%, rgba(201,169,98,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 40% 45% at 85% 50%, rgba(26,51,68,0.05) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='20' fill='none' stroke='%23C9A962' stroke-width='0.3' opacity='0.08'/%3E%3C/svg%3E");
  animation: textureDrift 30s ease-in-out infinite alternate;
}

.mvp-section__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mvp-block {
  background: linear-gradient(145deg, rgba(255,255,255,0.97) 0%, rgba(250,247,242,0.92) 100%);
  border-radius: 4px;
  padding: 32px 36px;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(4px);
  transition: box-shadow 0.7s var(--ease-noble);
}

.mvp-block.is-visible:hover {
  box-shadow: var(--shadow-soft), var(--shadow-gold);
}

.mvp-block__title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--petroleum);
  margin-bottom: 10px;
  padding-left: 14px;
  border-left: 3px solid var(--gold);
}

.mvp-block p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
}

/* ---- Contato ---- */
.contact-band {
  position: relative;
  background: linear-gradient(155deg, var(--petroleum-dark) 0%, var(--petroleum) 50%, #152A38 100%);
  padding: 60px 0;
  text-align: center;
  overflow: hidden;
}

.contact-band__texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 80% at 50% 100%, rgba(201,169,98,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 30% 40% at 20% 30%, rgba(232,213,168,0.06) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40h80M40 0v80' stroke='%23BFA15A' stroke-width='0.4' opacity='0.14'/%3E%3C/svg%3E");
  background-size: 100% 100%, 100% 100%, 80px 80px;
  animation: footerGridDrift 20s ease-in-out infinite alternate;
}

.contact-band__inner {
  position: relative;
  z-index: 1;
}

.contact-band__text {
  color: rgba(232, 213, 168, 0.8);
  margin-bottom: 28px;
  font-size: 16px;
}

.contact-band__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 2px;
  font-family: var(--font-noble);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  transition: transform 0.5s var(--ease-noble), box-shadow 0.5s ease, background 0.5s ease;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 42%, rgba(255,255,255,0.12) 50%, transparent 58%);
  transform: translateX(-120%);
  transition: transform 0.9s var(--ease-noble);
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

.btn--outline-light {
  background: transparent;
  color: var(--gold-light);
  border: 1.5px solid rgba(201,169,98,0.45);
}

.btn--outline-light:hover {
  background: rgba(201,169,98,0.12);
  border-color: var(--gold);
}

/* ---- Rodape ---- */
.site-footer {
  position: relative;
  background: var(--petroleum-dark);
  padding: 36px 0;
  text-align: center;
  border-top: 1px solid rgba(201,169,98,0.25);
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(200px, 40%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.site-footer p {
  font-size: 13px;
  color: rgba(232, 213, 168, 0.45);
}

/* ---- WhatsApp flutuante ---- */
.whatsapp-float {
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  right: calc(24px + env(safe-area-inset-right, 0px));
  z-index: 999;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 28px rgba(37,211,102,0.3);
  transition: transform 0.5s var(--ease-noble), box-shadow 0.5s ease;
  animation: whatsappEnter 1.6s var(--ease-noble) 1.8s forwards;
  opacity: 0;
}

.whatsapp-float__pulse {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(37,211,102,0.35);
  animation: whatsappPulse 3.5s var(--ease-noble) infinite;
  pointer-events: none;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37,211,102,0.38);
}

/* ---- Animacoes nobres ---- */
@keyframes bannerReveal {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInNoble {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes frameReveal {
  to { opacity: 1; }
}

@keyframes lineExpand {
  to { transform: scaleX(1); }
}

@keyframes goldShimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

@keyframes heroGridDrift {
  0% { background-position: 0% 0%, 0% 0%, 0 0; }
  100% { background-position: 0% 0%, 0% 0%, 72px 72px; }
}

@keyframes textureDrift {
  from { background-position: 0% 0%; }
  to { background-position: 100% 100%; }
}

@keyframes footerGridDrift {
  0% { background-position: 0% 0%, 0% 0%, 0 0; }
  100% { background-position: 0% 0%, 0% 0%, 80px 80px; }
}

@keyframes glowFloat {
  from { transform: translate(0, 0); }
  to { transform: translate(1%, -1%); }
}

@keyframes drawHeartbeat {
  to { stroke-dashoffset: 0; }
}

@keyframes playRing {
  0% { transform: scale(0.95); opacity: 0.5; }
  100% { transform: scale(1.25); opacity: 0; }
}

@keyframes photoReveal {
  from { opacity: 0.6; }
  to { opacity: 1; }
}

@keyframes whatsappEnter {
  to { opacity: 1; }
}

@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.2); opacity: 0; }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity var(--duration-reveal) var(--ease-noble),
    transform var(--duration-reveal) var(--ease-noble);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.reveal--left {
  transform: translateX(-18px);
}

.reveal.reveal--left.is-visible {
  transform: translateX(0);
}

.reveal.reveal--fade {
  transform: none;
}

/* ---- Responsivo ---- */
@media (max-width: 1024px) {
  .brand-hero { padding: 48px 0 40px; }

  .brand-services__list {
    flex-wrap: wrap;
    gap: 24px 0;
    border-top: none;
    padding-top: 0;
  }

  .brand-services__item {
    flex: 0 0 33.333%;
    padding: 16px 8px;
  }

  .brand-services__item:nth-child(3)::after,
  .brand-services__item:last-child::after {
    display: none;
  }

  .brand-services__item:not(:last-child):not(:nth-child(3))::after {
    display: block;
  }

  .specialist-band__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .specialist-profile {
    grid-template-columns: 132px 1fr;
    gap: 18px;
    padding: 18px 20px;
  }

  .specialist-photo {
    width: 132px;
    order: 0;
  }

  .service-box__list--cols {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .brand-hero::before {
    inset: 16px 20px;
  }

  .brand-hero { padding: 40px 0 32px; }

  .brand-services__item {
    flex: 0 0 50%;
  }

  .brand-services__item::after {
    display: none !important;
  }

  .brand-services__item:nth-child(odd) {
    border-right: 1px solid rgba(191,161,90,0.2);
  }

  .specialist-band {
    padding: 28px 0 32px;
  }

  .specialist-band__inner {
    gap: 16px;
  }

  .specialist-profile {
    display: grid;
    grid-template-columns: 124px 1fr;
    gap: 18px;
    align-items: center;
    max-width: 100%;
    margin: 0;
    padding: 18px 20px;
    text-align: left;
    border-radius: 14px;
  }

  .specialist-profile::before {
    height: 2px;
  }

  .specialist-photo {
    width: 124px;
    border-radius: 11px;
    border: 2px solid var(--gold-muted);
    box-shadow: 0 5px 18px rgba(26,51,68,0.11), 0 0 0 1px rgba(201,169,98,0.15);
  }

  .specialist-photo img {
    aspect-ratio: 3/4;
    object-position: center 12%;
  }

  .specialist-info {
    width: auto;
    background: transparent;
    border-radius: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    text-align: left;
  }

  .specialist-info::before {
    display: none;
  }

  .specialist-info__label {
    font-size: 10px;
    padding: 4px 8px;
    margin-bottom: 7px;
    letter-spacing: 0.1em;
  }

  .specialist-info__name {
    font-size: 1.1rem;
    margin-bottom: 10px;
    padding: 0;
    line-height: 1.3;
  }

  .specialist-info__list {
    text-align: left;
    max-width: none;
    margin: 0;
  }

  .specialist-info__list li {
    font-size: 12.5px;
    padding: 4px 0 4px 14px;
    line-height: 1.4;
  }

  .specialist-info__list li::before {
    top: 10px;
    width: 5px;
    height: 5px;
  }

  .tv-web__desc {
    font-size: 12px;
    margin-top: 8px;
  }

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

  .service-box--wide {
    grid-column: auto;
  }

  .contact-band__actions {
    flex-direction: column;
    align-items: center;
  }

  .contact-band__actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .specialist-profile {
    grid-template-columns: 112px 1fr;
    gap: 16px;
    padding: 16px 18px;
  }

  .specialist-photo {
    width: 112px;
  }

  .specialist-info__name {
    font-size: 1.02rem;
  }

  .specialist-info__list li {
    font-size: 12px;
  }

  .brand-logo__sgms-wrap {
    padding-left: 20px;
  }

  .brand-logo__heartbeat {
    width: 64px;
    height: 44px;
    left: -4px;
  }

  .brand-logo__consultoria {
    letter-spacing: 0.22em;
    gap: 10px;
  }

  .brand-services__item {
    flex: 0 0 100%;
    border-right: none !important;
    flex-direction: row;
    text-align: left;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(191,161,90,0.2);
  }

  .brand-services__item span {
    text-align: left;
    font-size: 11px;
  }

  .brand-services__item br {
    display: none;
  }

  .container { padding: 0 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .reveal.reveal--left,
  .reveal.reveal--fade {
    transform: none;
  }
  .whatsapp-float {
    opacity: 1;
    animation: none;
  }
  .brand-logo,
  .brand-tagline,
  .brand-services__list,
  .brand-services__item,
  .brand-hero__ornament,
  .brand-hero__ornament-line,
  .brand-hero__ornament-diamond {
    opacity: 1;
    animation: none;
    transform: none;
  }
  .brand-hero::before {
    opacity: 1;
    animation: none;
  }
  .section-heading::after {
    width: 64px;
  }
  .contact-band .section-heading::after {
    width: 72px;
  }
}


/* ---- Formulário de Contato Premium ---- */
.contact-form-section {
  background: linear-gradient(180deg, var(--ivory) 0%, var(--champagne) 100%);
  border-top: 1px solid var(--border-gold);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 32px;
  align-items: center;
}

.contact-form-copy__lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 24px;
}

.contact-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 14px;
}

.contact-benefits li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  line-height: 1.7;
}

.contact-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(201,169,98,0.15);
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.contact-form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(201,169,98,0.28);
  box-shadow: var(--shadow-soft);
}

.contact-form-card__header {
  margin-bottom: 22px;
}

.contact-form-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(201,169,98,0.12);
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form-card__header h3 {
  margin: 14px 0 10px;
  font-family: var(--font-display);
  color: var(--petroleum);
  font-size: 1.55rem;
}

.contact-form-card__header p {
  color: var(--text-light);
  line-height: 1.6;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--petroleum);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(26,51,68,0.12);
  background: #fff;
  color: var(--text);
  font: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(201,169,98,0.85);
  box-shadow: 0 0 0 4px rgba(201,169,98,0.14);
}

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

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

@media (max-width: 900px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
}
