/* ============================================
   AB CONSULTORIA - SHARED STYLESHEET
   Paleta: Preto + Dourado (#141B28 + #D4AF37)
   ============================================ */

:root {
  --color-primary: #D4AF37;
  --color-dark: #141B28;
  --color-dark-lighter: #1F2937;
  --color-text: #1F2937;
  --color-text-light: #6B7280;
  --color-bg: #FFFFFF;
  --color-border: #E5E7EB;
  --color-gray-light: #F9FAFB;
  --color-success: #10B981;
  --color-accent: #8B7355;

  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --transition: all 0.3s ease;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: var(--color-text);
}

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 2rem;
}

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

.section--dark {
  background: var(--color-dark);
  color: #FFF;
}

.section--dark h2,
.section--dark h3,
.section--dark p {
  color: #FFF;
}

.section-label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition);
}

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

/* ============================================
   TOPBAR
   ============================================ */

.topbar {
  background: var(--color-dark);
  color: #FFF;
  padding: 0.75rem 2rem;
  font-size: 0.875rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-socials {
  display: flex;
  gap: 1.5rem;
}

.topbar-socials a {
  color: #FFF;
  opacity: 0.8;
  transition: var(--transition);
}

.topbar-socials a:hover {
  opacity: 1;
  color: var(--color-primary);
}

.topbar-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #FFF;
}

.topbar-phone svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .topbar {
    flex-direction: column;
    gap: 1rem;
  }

  .topbar-socials {
    justify-content: center;
  }
}

/* ============================================
   HEADER (STICKY)
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  line-height: 1;
}
.site-logo img {
  display: block;
  max-height: 46px;
  width: auto;
  /* mix-blend-mode: screen remove o fundo preto do PNG,
     deixando apenas as chaves douradas e o texto branco visíveis */
  mix-blend-mode: screen;
}

.logo-mark {
  width: 45px;
  height: 45px;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-dark);
  font-size: 1.25rem;
  font-family: var(--font-display);
}

.logo-text span {
  color: var(--color-primary);
}

.main-nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.main-nav a {
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

.main-nav a:hover {
  color: var(--color-primary);
}

.main-nav a.active {
  color: var(--color-primary);
}

/* Dropdown */
.nav-item {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  padding: 0.75rem 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 0.5rem;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--color-text);
  font-size: 0.9rem;
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background: var(--color-gray-light);
  color: var(--color-primary);
  padding-left: 2rem;
}

.nav-cta {
  background: var(--color-primary);
  color: var(--color-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: var(--transition);
}

.nav-cta:hover {
  background: #E0C850;
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--color-dark);
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 0;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
  }

  .main-nav.active {
    max-height: 500px;
  }

  .main-nav a,
  .nav-cta {
    padding: 0.75rem 2rem;
    display: block;
  }

  .dropdown-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    background: var(--color-gray-light);
    box-shadow: none;
    border: none;
    margin: 0;
  }

  .nav-item.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
  }

  .dropdown-menu a {
    padding: 0.5rem 2rem 0.5rem 3rem;
  }
}

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

.hero {
  min-height: 92vh;
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
}

.hero-photo-placeholder {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, #1F2937 0%, #141B28 100%);
  z-index: 0;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: rgba(20, 27, 40, 0.6);
  z-index: 1;
}

.hero-decoration {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  opacity: 0.3;
}

.hero-decoration svg {
  width: 80px;
  height: 400px;
  display: block;
}

.hero-content {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  min-height: 92vh;
}

.hero-text {
  max-width: 600px;
}

.hero-eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  display: block;
}

.hero h1 {
  color: #FFF;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero h1 em {
  font-style: italic;
  color: var(--color-primary);
}

.hero-sub {
  color: #FFF;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

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

.btn-primary:hover {
  background: #E0C850;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

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

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

.stat-item {
  border-top: 3px solid var(--color-primary);
  padding-top: 1rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.stat-label {
  color: #FFF;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 2rem 1rem;
  }

  .hero-photo-placeholder,
  .hero-bg {
    width: 100%;
  }

  .hero-decoration {
    right: -20%;
    opacity: 0.15;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}

/* ============================================
   MANIFESTO SECTION
   ============================================ */

.manifesto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 6rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.manifesto-content {
  background: var(--color-primary);
  padding: 3rem;
  border-radius: 0.5rem;
}

.manifesto-content p {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-dark);
  line-height: 1.6;
  margin: 0;
}

.manifesto-visual {
  background: var(--color-gray-light);
  border-radius: 0.5rem;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: var(--color-text-light);
  text-align: center;
}

.manifesto-visual svg {
  width: 80px;
  height: 80px;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .manifesto {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 1rem;
  }

  .manifesto-content p {
    font-size: 1.25rem;
  }
}

/* ============================================
   LOGOS SECTION
   ============================================ */

.logos-section {
  padding: 6rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logos-section h3 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.logo-chip {
  background: var(--color-gray-light);
  border: 2px solid var(--color-border);
  border-radius: 0.5rem;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  color: var(--color-text-light);
  transition: var(--transition);
  min-height: 120px;
}

.logo-chip:hover {
  border-color: var(--color-primary);
  background: #FFF;
  transform: translateY(-4px);
}

/* ============================================
   PAIN CARDS SECTION
   ============================================ */

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.pain-card {
  background: #FFF;
  padding: 2rem;
  border-radius: 0.5rem;
  border-left: 4px solid var(--color-primary);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pain-card p {
  color: var(--color-text);
  font-size: 1.05rem;
  margin: 0;
}

.insight-box {
  background: var(--color-dark);
  color: #FFF;
  padding: 3rem;
  border-radius: 0.5rem;
  border-top: 4px solid var(--color-primary);
  margin-top: 3rem;
}

.insight-box p {
  color: #FFF;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.insight-box .sub {
  color: var(--color-primary);
  font-weight: 600;
  display: block;
}

@media (max-width: 768px) {
  .pain-grid {
    grid-template-columns: 1fr;
  }

  .insight-box {
    padding: 2rem;
  }
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-header {
  text-align: center;
  margin-bottom: 3rem;
}

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

.service-card {
  background: #FFF;
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
  transform: translateY(-4px);
}

.service-card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 1.5;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.service-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-link {
  color: var(--color-primary);
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
}

.card-link:hover {
  transform: translateX(4px);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

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

.testimonial-card {
  background: #FFF;
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  padding: 2rem;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
}

.testimonial-card blockquote {
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark);
  font-weight: 700;
  font-size: 1.1rem;
}

.author-info h4 {
  font-size: 0.95rem;
  margin: 0 0 0.25rem;
  color: var(--color-text);
}

.author-info p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin: 0;
}

/* ============================================
   CONTACT / CTA SECTION
   ============================================ */

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

.contact-content h2 {
  margin-bottom: 1rem;
}

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

.contact-checklist {
  list-style: none;
  margin-bottom: 2rem;
}

.contact-checklist li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.contact-checklist svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.btn-whatsapp {
  background: var(--color-success);
  color: #FFF;
  padding: 1rem 2rem;
  border-radius: 0.375rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-whatsapp:hover {
  background: #059669;
  transform: translateY(-2px);
}

.btn-whatsapp svg {
  width: 20px;
  height: 20px;
}

.form-card {
  background: var(--color-gray-light);
  padding: 2.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--color-border);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 0.375rem;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

.btn-submit {
  width: 100%;
  background: var(--color-primary);
  color: var(--color-dark);
  padding: 1rem;
  border: none;
  border-radius: 0.375rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-submit:hover {
  background: #E0C850;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .contact-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-card {
    padding: 1.5rem;
  }
}

/* ============================================
   PAGE HERO (About/Services)
   ============================================ */

.page-hero {
  background: var(--color-dark);
  color: #FFF;
  padding: 4rem 2rem;
  text-align: center;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.breadcrumb a {
  color: #FFF;
}

.page-hero h1 {
  color: #FFF;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-hero p {
  color: #FFF;
  opacity: 0.9;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  background: var(--color-gray-light);
  border-radius: 0.5rem;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: var(--color-text-light);
  text-align: center;
}

.about-visual svg {
  width: 100px;
  height: 100px;
  opacity: 0.5;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content p {
  margin-bottom: 1.5rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.value-item h4 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.value-item p {
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 768px) {
  .about-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }
}

/* ============================================
   STATS BAR
   ============================================ */

.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.stat-box {
  color: #FFF;
}

.stat-box-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-box-label {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* ============================================
   TEAM SECTION
   ============================================ */

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

.team-card {
  background: #FFF;
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: var(--transition);
}

.team-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.team-photo {
  background: var(--color-gray-light);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
}

.team-photo svg {
  width: 80px;
  height: 80px;
  opacity: 0.5;
}

.team-info {
  padding: 2rem;
}

.team-info h4 {
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.team-info .position {
  color: var(--color-primary);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.team-info p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin: 0;
}

/* ============================================
   DIFERENCIAIS SECTION
   ============================================ */

.diferentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}

.diferencial-item {
  text-align: center;
}

.diferencial-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.diferencial-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 1.5;
}

.diferencial-item h3 {
  color: var(--color-text);
  margin-bottom: 1rem;
}

.diferencial-item p {
  color: var(--color-text-light);
  margin: 0;
}

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

.site-footer {
  background: var(--color-dark);
  color: #FFF;
  padding: 4rem 2rem 2rem;
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: #FFF;
  margin-bottom: 1.5rem;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 0.75rem;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--color-primary);
  padding-left: 4px;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-socials a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
  margin: 0;
}

.footer-socials a:hover {
  background: var(--color-primary);
  color: var(--color-dark);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 2rem 1rem 1rem;
  }

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

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */

.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--color-success);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.floating-whatsapp:hover {
  background: #059669;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
}

@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
  }

  .floating-whatsapp svg {
    width: 24px;
    height: 24px;
  }
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-in {
  animation: slideInLeft 0.6s ease forwards;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .section {
    padding: 4rem 2rem;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  p {
    font-size: 0.95rem;
  }

  .section {
    padding: 3rem 1rem;
  }

  .container {
    padding: 0 1rem;
  }
}

/* =============================================
   PATCH — aliases para classes geradas
   ============================================= */

/* Topbar aliases */
.topbar-socials { display: flex; align-items: center; gap: 18px; }
.topbar-socials a { color: rgba(255,255,255,.45); transition: color .25s; display: flex; align-items: center; }
.topbar-socials a:hover { color: var(--gold); }
.topbar-socials svg { width: 16px; height: 16px; }

/* Hero layout */
.hero-content {
  position: relative; z-index: 3;
  width: 100%; max-width: 1200px;
  margin: 0 auto; padding: 0 32px;
}
.hero-text { max-width: 680px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 0; }
.hero-decoration {
  position: absolute; right: 5%; top: 50%;
  transform: translateY(-50%);
  width: 180px; height: 380px;
  z-index: 2; opacity: .25; pointer-events: none;
}
.hero-decoration svg { width: 100%; height: 100%; }

/* Hero stat numbers */
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; color: var(--gold); font-weight: 700;
  line-height: 1; display: block; margin-bottom: 4px;
}
.stat-label { font-size: 12px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: 1.2px; }

/* Manifesto alias */
.manifesto-content {
  display: flex; align-items: center;
  padding: 72px 64px;
  background: var(--gold);
}
.manifesto-content p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 700; font-style: italic;
  color: var(--black); line-height: 1.5;
}

/* Nav dropdown alias */
.nav-item { position: relative; }
.nav-item > a::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 6px;
  vertical-align: 2px;
  opacity: .6;
}
.nav-item:hover .dropdown-menu { display: block; }

/* Logos section alias */
.logos-section {
  background: var(--white);
  padding: 60px 0;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}
.logos-section .container { text-align: center; }

/* Services layout */
.services-header { margin-bottom: 0; }
.service-card-icon {
  width: 56px; height: 56px;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.18);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.service-card-icon svg { width: 24px; height: 24px; color: var(--gold); }

/* Buttons standalone (sem classe .btn base) */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px; border-radius: 9px;
  font-weight: 700; font-size: 15px;
  border: 2px solid transparent;
  transition: all .28s; white-space: nowrap;
  background: var(--gold); color: #000;
  box-shadow: var(--shadow-gold);
  text-decoration: none;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(201,168,76,.35); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px; border-radius: 9px;
  font-weight: 700; font-size: 15px;
  transition: all .28s; white-space: nowrap;
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.25);
  text-decoration: none;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* Form aliases */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .6px;
  color: rgba(255,255,255,.4); margin-bottom: 7px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 9px; color: var(--white);
  font-family: inherit; font-size: 15px;
  outline: none; transition: border-color .25s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,.2); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group select { cursor: pointer; -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; }
.form-group select option { background: #1a2235; color: #fff; }
.form-group textarea { resize: vertical; min-height: 100px; }

.btn-submit {
  width: 100%; padding: 15px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000; border: none; border-radius: 9px;
  font-family: inherit; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all .28s; margin-top: 4px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.3); }

/* WhatsApp button alias */
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 12px;
  background: #25D366; color: #fff;
  padding: 16px 34px; border-radius: 11px;
  font-size: 15px; font-weight: 700;
  box-shadow: 0 6px 24px rgba(37,211,102,.25);
  transition: all .28s; text-decoration: none;
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37,211,102,.38); }
.btn-whatsapp svg { width: 22px; height: 22px; }

/* Contact section alias */
.contact-checklist { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.contact-checklist li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: rgba(255,255,255,.7); }
.contact-checklist li svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.contact-content { /* same as contact-text */ }

/* Footer aliases */
.footer-content {
  /* same as footer-brand */
}
.footer-content .logo-text { font-size: 22px; }
.footer-content p { font-size: 14px; color: rgba(255,255,255,.38); line-height: 1.7; margin: 20px 0 24px; max-width: 300px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.05);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45);
  transition: background .25s, color .25s;
}
.footer-socials a:hover { background: var(--gold); color: #000; }
.footer-socials svg { width: 16px; height: 16px; }

/* Floating WhatsApp alias */
.floating-whatsapp {
  position: fixed; bottom: 28px; right: 28px;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; z-index: 999;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 22px rgba(37,211,102,.42);
  animation: wabounce 3s ease-in-out infinite;
  transition: transform .3s;
}
.floating-whatsapp:hover { animation: none; transform: scale(1.12); }
.floating-whatsapp svg { width: 28px; height: 28px; color: #fff; }

/* Star individual */
.star { width: 16px; height: 16px; fill: var(--gold); color: var(--gold); display: inline-block; }

/* Reveal: suporte a classe .visible (além de .on) */
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Main-nav active state */
.main-nav.active { display: flex; }

/* Seção de contato — layout para páginas internas */
.section .contact-split .form-card--light .form-group label { color: rgba(0,0,0,.45); }
.section .contact-split .form-card--light .form-group input,
.section .contact-split .form-card--light .form-group select,
.section .contact-split .form-card--light .form-group textarea {
  background: var(--offwhite); border-color: #ddd; color: var(--black);
}
.section .contact-split .form-card--light .form-group input::placeholder,
.section .contact-split .form-card--light .form-group textarea::placeholder { color: #aaa; }

/* Responsive patches */
@media (max-width: 768px) {
  .hero-content { padding: 0 20px; }
  .manifesto-content { padding: 44px 28px; }
  .hero-decoration { display: none; }
  .main-nav.active {
    display: flex; flex-direction: column; align-items: stretch; gap: 4px;
    position: absolute; top: 72px; left: 0; width: 100%;
    background: var(--dark-nav);
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
  }
  .main-nav.active .nav-item .dropdown-menu {
    display: block; position: static;
    background: transparent; border: none;
    box-shadow: none; padding: 0 0 0 12px;
  }
}
@media (max-width: 540px) {
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .hero-stats .stat-item { flex: 1 1 40%; }
}

/* ============================================================
   PATCH 2 — classes usadas em clientes.html e contato.html
   ============================================================ */

/* Botão flutuante WhatsApp (alias de .floating-whatsapp) */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.45);
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,.6);
}
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* Botão WhatsApp inline (alias de .btn-whatsapp) */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  border: none;
  cursor: pointer;
}
.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
}
.whatsapp-btn svg { width: 22px; height: 22px; flex-shrink: 0; }

/* Botão submit do formulário (alias de .btn-submit / .form-submit) */
.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
  letter-spacing: .03em;
}
.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,.35);
}
.form-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }

/* Grid do rodapé (alias de .footer-grid) */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}
