/* ============================================
   VS GOLD — Corporate Premium Stylesheet
   ============================================ */

:root {
  --gold: #D4AF37;
  --gold-light: #E8C96A;
  --gold-dark: #B8962E;
  --black: #111111;
  --graphite: #2E2E2E;
  --gray: #6B6B6B;
  --gray-light: #A8A8A8;
  --white: #FFFFFF;
  --off-white: #F8F7F4;
  --cream: #F2EFE8;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  --header-h: 80px;
  --container: min(1200px, 92vw);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 4px 20px rgba(17, 17, 17, 0.06);
  --shadow-md: 0 12px 40px rgba(17, 17, 17, 0.1);
  --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.2);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--graphite);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: var(--container);
  margin-inline: auto;
}

/* ---- Preloader ---- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__bar {
  width: 120px;
  height: 2px;
  background: var(--graphite);
  margin-top: 1.5rem;
  overflow: hidden;
  border-radius: 2px;
}

.preloader__bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: var(--gold);
  animation: preload-bar 1.2s ease-in-out infinite;
}

@keyframes preload-bar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.header.scrolled {
  background: rgba(17, 17, 17, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo picture,
.logo__img,
.preloader__logo-img {
  display: block;
}

.logo__img,
.preloader__logo-img {
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.preloader__logo-img {
  height: 64px;
  max-width: min(280px, 80vw);
}

.logo--footer .logo__img {
  height: 44px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.5rem 0.85rem;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease), left 0.3s var(--ease);
}

.nav__link:hover,
.nav__link.active {
  color: var(--gold);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 60%;
  left: 20%;
}

.nav__link--cta {
  margin-left: 0.5rem;
  padding: 0.55rem 1.25rem;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
}

.nav__link--cta::after { display: none; }

.nav__link--cta:hover {
  background: var(--gold);
  color: var(--black) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) { opacity: 0; }

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
  border: 1px solid transparent;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--full { width: 100%; }

.btn__loader {
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top-color: var(--black);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 5rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1920&q=80') center/cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17, 17, 17, 0.92) 0%,
    rgba(46, 46, 46, 0.85) 50%,
    rgba(17, 17, 17, 0.88) 100%
  );
}

.hero__grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero__tagline {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

.hero__stats {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.hero__stat-suffix {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
}

.hero__stat-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.35rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.hero__scroll span {
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.3; }
}

/* ---- Sections ---- */
.section {
  padding: 6rem 0;
}

.section__header {
  margin-bottom: 3.5rem;
  max-width: 600px;
}

.section__header--center {
  text-align: center;
  margin-inline: auto;
}

.section__header--light .section__title,
.section__header--light .section__desc {
  color: var(--white);
}

.section__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.section__desc {
  font-size: 1.05rem;
  color: var(--gray);
  font-weight: 300;
}

/* ---- Reveal animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Sobre ---- */
.sobre {
  background: var(--off-white);
}

.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.sobre__text .lead {
  font-size: 1.15rem;
  color: var(--black);
  font-weight: 400;
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.sobre__text p {
  color: var(--gray);
}

.sobre__diferenciais {
  background: var(--white);
  padding: 2.5rem;
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
}

.sobre__diferenciais-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--black);
  margin-bottom: 1.5rem;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.85rem;
  color: var(--graphite);
  font-weight: 400;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.sobre__visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.sobre__card {
  background: var(--white);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  border: 1px solid transparent;
}

.sobre__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, 0.2);
}

.sobre__card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  color: var(--gold);
}

.sobre__card-icon svg { width: 100%; height: 100%; }

.sobre__card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.sobre__card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ---- Serviços ---- */
.servicos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(46, 46, 46, 0.08);
  padding: 2rem;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.service-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.service-card__icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--black);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-card ul li {
  font-size: 0.9rem;
  color: var(--gray);
  padding: 0.35rem 0;
  padding-left: 1rem;
  position: relative;
}

.service-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

/* ---- Setores ---- */
.setores {
  background: var(--black);
  color: var(--white);
}

.setores .section__title { color: var(--white); }

.setores__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}

.setor-card {
  background: var(--graphite);
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s var(--ease);
  cursor: default;
}

.setor-card:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.35);
  transform: translateY(-4px);
}

.setor-card__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  opacity: 0.5;
  display: block;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.setor-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.setor-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
}

/* ---- Diferenciais ---- */
.diferenciais {
  position: relative;
  overflow: hidden;
}

.diferenciais__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--graphite) 0%, var(--black) 100%),
    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=60') center/cover;
  background-blend-mode: overlay;
}

.diferenciais .container { position: relative; z-index: 1; }

.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.diff-card {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  transition: all 0.4s var(--ease);
}

.diff-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.08);
}

.diff-card__icon {
  color: var(--gold);
  font-size: 0.65rem;
  margin-bottom: 1rem;
  display: block;
}

.diff-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 0.65rem;
}

.diff-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* ---- Processo ---- */
.processo {
  background: var(--cream);
}

.processo__timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.processo__timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  z-index: 0;
}

.processo__step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.processo__step-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--black);
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
}

.processo__step:hover .processo__step-num {
  background: var(--gold);
  transform: scale(1.08);
}

.processo__step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.processo__step p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.55;
}

/* ---- Depoimentos / Carousel ---- */
.depoimentos {
  background: var(--off-white);
}

.carousel {
  max-width: 720px;
  margin-inline: auto;
}

.carousel__track {
  position: relative;
  min-height: 220px;
}

.carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  pointer-events: none;
}

.carousel__slide.active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.testimonial {
  text-align: center;
  padding: 2rem;
}

.testimonial__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.testimonial p {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--black);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.testimonial cite {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  font-size: 1rem;
  color: var(--black);
  display: block;
}

.testimonial footer span {
  display: block;
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 0.25rem;
}

.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.carousel__btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(46, 46, 46, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--graphite);
  transition: all 0.3s var(--ease);
}

.carousel__btn svg { width: 20px; height: 20px; }

.carousel__btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}

.carousel__dots {
  display: flex;
  gap: 0.5rem;
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(46, 46, 46, 0.2);
  transition: all 0.3s var(--ease);
  cursor: pointer;
  border: none;
  padding: 0;
}

.carousel__dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ---- Contato ---- */
.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.contato__info .section__title { margin-bottom: 1rem; }

.contato__info > p {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.contato__company {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(46, 46, 46, 0.1);
}

.contato__company-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.35rem;
}

.contato__cnpj {
  font-size: 0.9rem;
  color: var(--gray);
}

.contato__cnpj strong {
  color: var(--black);
  font-weight: 600;
}

.contato__channel--address {
  cursor: default;
}

.contato__channel--address:hover {
  border-color: rgba(46, 46, 46, 0.08);
  background: var(--off-white);
}

.contato__channel address {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.55;
}

.contato__channel-icon.phone,
.contato__channel-icon.address {
  background: var(--black);
  color: var(--gold);
}

.contato__channels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contato__channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--off-white);
  border: 1px solid rgba(46, 46, 46, 0.08);
  transition: all 0.3s var(--ease);
}

.contato__channel:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.06);
}

.contato__channel-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.contato__channel-icon svg { width: 22px; height: 22px; }

.contato__channel-icon.whatsapp {
  background: #25D366;
  color: white;
}

.contato__channel-icon.email {
  background: var(--black);
  color: var(--gold);
}

.contato__channel strong {
  display: block;
  font-size: 0.85rem;
  color: var(--black);
}

.contato__channel span {
  font-size: 0.9rem;
  color: var(--gray);
}

.contato__map {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(46, 46, 46, 0.1);
}

.contato__form {
  background: var(--white);
  padding: 2.5rem;
  border: 1px solid rgba(46, 46, 46, 0.08);
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--graphite);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--black);
  background: var(--off-white);
  border: 1px solid rgba(46, 46, 46, 0.12);
  border-radius: 2px;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #c0392b;
}

.form-error {
  display: block;
  font-size: 0.8rem;
  color: #c0392b;
  margin-top: 0.35rem;
  min-height: 1.2em;
}

.form-success {
  text-align: center;
  color: #27ae60;
  font-weight: 500;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(39, 174, 96, 0.08);
  border-radius: 2px;
}

/* ---- Footer ---- */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__tagline {
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 400px;
}

.footer__info {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
}

.footer__legal {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.25rem;
}

.footer__cnpj {
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}

.footer__address {
  font-style: normal;
  margin-bottom: 0.5rem;
}

.footer__contact-links a {
  color: rgba(255, 255, 255, 0.65);
}

.footer__contact-links a:hover {
  color: var(--gold);
}

.footer__nav h4,
.footer__social h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer__nav ul li { margin-bottom: 0.6rem; }

.footer__nav a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer__nav a:hover { color: var(--gold); }

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s var(--ease);
}

.social-links a svg { width: 18px; height: 18px; }

.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.85rem;
}

.footer__message {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1rem;
}

/* ---- Voltar ao topo ---- */
.back-to-top {
  position: fixed;
  bottom: 5.75rem;
  right: 2rem;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--black);
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease), transform 0.35s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
  box-shadow: 0 6px 20px rgba(17, 17, 17, 0.25);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--black);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.page-blog .back-to-top {
  bottom: 2rem;
}

/* ---- WhatsApp Float ---- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.whatsapp-float svg { width: 28px; height: 28px; }

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}

/* ---- Blog page shared ---- */
.blog-hero {
  padding: calc(var(--header-h) + 4rem) 0 3rem;
  background: var(--black);
  text-align: center;
}

.blog-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
}

.blog-hero p {
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.75rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  padding: 4rem 0 6rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid rgba(46, 46, 46, 0.08);
  overflow: hidden;
  transition: all 0.4s var(--ease);
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.blog-card__img {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.blog-card__body { padding: 1.5rem; }

.blog-card__meta {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.blog-card h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--black);
  margin-bottom: 0.75rem;
}

.blog-card p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 1rem;
}

.blog-card__link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.blog-card__link:hover { color: var(--gold); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .processo__timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .processo__timeline::before { display: none; }

  .sobre__visual { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 17, 17, 0.98);
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
  }

  .nav.open { transform: translateX(0); }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .nav__link {
    font-size: 1rem;
    padding: 1rem 0;
    display: block;
    width: 100%;
  }

  .nav__link--cta {
    margin-left: 0;
    margin-top: 1rem;
    text-align: center;
    width: 100%;
  }

  .sobre__grid,
  .contato__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .processo__timeline {
    grid-template-columns: 1fr;
  }

  .hero__stats { gap: 2rem; }
}

@media (max-width: 600px) {
  :root { --header-h: 70px; }

  .logo__img {
    height: 40px;
    max-width: 160px;
  }

  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }

  .hero__stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .form-row { grid-template-columns: 1fr; }

  .contato__form { padding: 1.5rem; }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .testimonial p { font-size: 1.2rem; }

  .back-to-top {
    bottom: 5rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
  }

  .page-blog .back-to-top {
    bottom: 1.25rem;
  }

  .whatsapp-float {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 50px;
    height: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
