/* ============================================
   CHAINE VITÓRIA - CSS PRINCIPAL
   Versão: 1.0.0
   ============================================ */

/* ============================================
   1. VARIÁVEIS CSS / DESIGN TOKENS
   ============================================ */
:root {
  /* Cores - Paleta Quente & Clean */
  --gold:           #654c38;
  --gold-light:     #8a6a52;
  --gold-dark:      #4a3628;
  --gold-gradient:  linear-gradient(135deg, #654c38 0%, #7a5c44 100%);
  --gold-glow:      0 4px 20px rgba(101, 76, 56, 0.15);
  --gold-glow-lg:   0 8px 40px rgba(101, 76, 56, 0.12);

  /* Backgrounds */
  --bg-primary:     #ffffff;
  --bg-section:     #e1cbc3;
  --bg-card:        rgba(255, 255, 255, 0.85);
  --bg-card-hover:  rgba(101, 76, 56, 0.06);
  --bg-glass:       rgba(255, 255, 255, 0.55);
  --bg-glass-dark:  rgba(209, 193, 175, 0.6);

  /* Bordas */
  --border-subtle:  rgba(101, 76, 56, 0.12);
  --border-gold:    rgba(101, 76, 56, 0.28);
  --border-gold-lg: rgba(101, 76, 56, 0.5);

  /* Texto */
  --text-white:     #4b4b4b;
  --text-muted:     rgba(75, 75, 75, 0.5);
  --text-secondary: rgba(75, 75, 75, 0.72);

  /* Tipografia */
  --font-heading:   'Cormorant Garamond', serif;
  --font-body:      'Inter', sans-serif;

  /* Espaçamentos */
  --section-py:     100px;
  --section-py-sm:  60px;
  --container-px:   20px;

  /* Bordas arredondadas */
  --radius-sm:      8px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --radius-xl:      32px;
  --radius-pill:    100px;

  /* Transições */
  --transition:     all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   2. RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ============================================
   3. TIPOGRAFIA
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-white);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: rgba(101, 76, 56, 0.08);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

.text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   4. LAYOUT / CONTAINER
   ============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section {
  position: relative;
  padding: var(--section-py) 0;
}

/* ============================================
   5. BOTÕES
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  user-select: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.btn:hover::before {
  transform: translateX(0);
}

/* Botão Principal */
.btn--gold {
  background: var(--gold-gradient);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(101, 76, 56, 0.25);
}

.btn--gold:hover {
  box-shadow: 0 8px 36px rgba(101, 76, 56, 0.35);
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.btn--gold:active {
  transform: translateY(0);
}

/* Botão Outline */
.btn--outline {
  background: transparent;
  color: var(--gold-light);
  border-color: var(--border-gold-lg);
}

.btn--outline:hover {
  background: rgba(101, 76, 56, 0.1);
  border-color: var(--gold);
  box-shadow: var(--gold-glow);
}

/* Tamanhos */
.btn--lg {
  font-size: 1.05rem;
  padding: 16px 40px;
}

.btn--full {
  width: 100%;
}

/* ============================================
   6. HEADER
   ============================================ */
.cv-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
}

.cv-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 24px rgba(101, 76, 56, 0.08);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px var(--container-px);
  transition: padding 0.3s ease;
}

.cv-header.scrolled .header-container {
  padding-top: 14px;
  padding-bottom: 14px;
}

/* Logo */
.header-logo {
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo img {
  height: 48px;
  width: auto;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

/* Nav Desktop */
.header-nav {
  display: flex;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.nav-link:hover {
  color: var(--text-white);
  background: var(--bg-glass);
}

.nav-link--cta {
  color: var(--gold-light) !important;
  background: rgba(101, 76, 56, 0.1);
  border: 1px solid var(--border-gold);
}

.nav-link--cta:hover {
  background: rgba(101, 76, 56, 0.2);
  box-shadow: var(--gold-glow);
}

/* WhatsApp no Header */
.header-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  background: #25D366;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  flex-shrink: 0;
}

.header-whatsapp:hover {
  background: #1da952;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.header-whatsapp span {
  display: none;
}

/* Hamburger */
.header-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  flex-shrink: 0;
}

.header-hamburger span {
  display: block;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.header-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header-hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.header-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 80px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  padding: 40px var(--container-px);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-link {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-secondary);
  padding: 16px 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.mobile-nav-link:hover {
  color: var(--gold-light);
  padding-left: 12px;
}

.mobile-nav-link--cta {
  color: var(--gold-light);
  border-bottom: none;
  margin-top: 20px;
  background: rgba(101, 76, 56, 0.1);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gold);
  text-align: center;
}

/* ============================================
   7. HERO
   ============================================ */
.section--hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--bg-primary);
  background-image: url('../images/hero-bg-desktop.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.88) 0%,
    rgba(255, 255, 255, 0.65) 50%,
    rgba(255, 255, 255, 0.18) 100%
  );
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  min-height: calc(100vh - 80px);
  padding: 60px 0;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: rgba(101, 76, 56, 0.1);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: 0;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* Foto da Hero */
.hero-photo {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-photo__img {
  position: relative;
  z-index: 2;
  max-height: 75vh;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.5));
}

.hero-photo__placeholder {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--bg-card);
  border: 2px dashed var(--border-gold);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 400px;
}

.photo-placeholder-inner {
  text-align: center;
  color: var(--text-muted);
}

.hero-photo__glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 200px;
  background: radial-gradient(ellipse, rgba(101, 76, 56, 0.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-dot {
  width: 6px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  border-radius: 3px;
  margin: 0 auto;
  animation: scrollDown 1.8s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.5; transform: scaleY(0.6); }
  100% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   8. STATS / NÚMEROS
   ============================================ */
.section--stats {
  padding: 60px 0;
  background: #d1c1af;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.stat-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.stat-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--gold-glow);
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1;
}

.stat-card__number {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 0;
}

.stat-card__label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ============================================
   9. SOBRE
   ============================================ */
.section--about {
  background: var(--bg-primary);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-photo-wrapper {
  position: relative;
  display: inline-block;
}

.about-photo-glow {
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-lg);
  background: var(--gold-gradient);
  animation: borderSpin 4s linear infinite;
  z-index: -1;
}

@keyframes borderSpin {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

.about-photo {
  width: 100%;
  max-width: 440px;
  height: 540px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  position: relative;
  z-index: 1;
}

.about-photo--placeholder {
  background: var(--bg-card);
  border: 2px dashed var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-align: center;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold-gradient);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 500;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 8px 30px rgba(101, 76, 56, 0.3);
  z-index: 3;
}

.about-badge__number {
  display: block;
  font-size: 2.5rem;
  line-height: 1;
}

.about-badge__text {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

.about-content {
  padding-right: 20px;
}

.about-text {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-text p {
  margin-bottom: 16px;
}

.about-achievements {
  margin-bottom: 36px;
}

.about-achievements li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.about-achievements li:last-child {
  border-bottom: none;
}

.achievement-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 700;
}

/* ============================================
   10. PARA QUEM É
   ============================================ */
.section--audience {
  background: var(--bg-section);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.audience-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.audience-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: var(--radius-lg);
}

.audience-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: var(--gold-glow);
}

.audience-card__icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
}

.audience-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-white);
}

.audience-card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   11. PALESTRAS / TEMAS
   ============================================ */
.section--talks {
  background: var(--bg-primary);
}

.talks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.talk-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.talk-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.talk-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--gold-glow);
}

.talk-card:hover::before {
  transform: scaleX(1);
}

.talk-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.talk-card__icon {
  font-size: 2rem;
}

.talk-card__category {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  background: rgba(101, 76, 56, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-gold);
}

.talk-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.talk-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.talk-card__duration {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
}

.talks-cta {
  text-align: center;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.talks-cta p {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

.talks-cta strong {
  color: var(--text-white);
}

/* ============================================
   12. DEPOIMENTOS
   ============================================ */
.section--testimonials {
  background: var(--bg-section);
}

.testimonials-swiper {
  padding: 20px 10px 60px !important;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 40px;
  height: auto;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--gold-glow);
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonial-card__text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
  quotes: '"' '"';
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-card__photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border-gold);
}

.testimonial-card__photo--initials {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.2rem;
}

.testimonial-card__name {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Swiper customizations */
.testimonials-swiper .swiper-pagination-bullet {
  background: var(--text-muted);
  opacity: 1;
  width: 8px;
  height: 8px;
  transition: var(--transition);
}

.testimonials-swiper .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

.testimonials-swiper .swiper-button-prev,
.testimonials-swiper .swiper-button-next {
  color: var(--gold);
  width: 44px;
  height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  top: auto;
  bottom: 0;
}

.testimonials-swiper .swiper-button-prev {
  right: 60px;
  left: auto;
}

.testimonials-swiper .swiper-button-next {
  right: 0;
}

.testimonials-swiper .swiper-button-prev::after,
.testimonials-swiper .swiper-button-next::after {
  font-size: 14px;
  font-weight: 900;
}

/* ============================================
   13. EMPRESAS / CLIENTES
   ============================================ */
.section--clients {
  background: var(--bg-primary);
  padding: var(--section-py) 0;
}

.clients-swiper {
  padding: 20px 0 !important;
}

.client-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: var(--transition);
  height: 100px;
}

.client-logo-card img {
  max-height: 50px;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(1) brightness(0.6);
  transition: filter 0.3s ease;
}

.client-logo-card:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
}

.client-logo-card:hover img {
  filter: grayscale(0) brightness(1);
}

.client-logo-card--placeholder {
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
}

/* ============================================
   14. REDES SOCIAIS
   ============================================ */
.section--social {
  background: var(--bg-section);
}

.social-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 700px;
  margin: 0 auto 40px;
}

.social-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 40px 24px;
  text-align: center;
  transition: var(--transition);
}

.social-stat-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--gold-glow);
  transform: translateY(-4px);
}

.social-stat-card__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--gold);
}

.social-stat-card__number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 400;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.social-stat-card__network {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.social-cta {
  text-align: center;
}

/* ============================================
   15. CTA / CONTATO
   ============================================ */
.section--cta {
  background: var(--bg-primary);
  overflow: hidden;
}

.cta-bg-decoration {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(101, 76, 56, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.cta-benefits {
  margin-bottom: 36px;
}

.cta-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  padding: 10px 0;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border-subtle);
}

.cta-benefits li:last-child {
  border-bottom: none;
}

.cta-benefits li:before {
  content: attr(data-icon);
}

/* Formulário */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.contact-form__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form-input:focus {
  border-color: var(--gold);
  background: rgba(101, 76, 56, 0.05);
  box-shadow: 0 0 0 3px rgba(101, 76, 56, 0.1);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  margin-top: 8px;
}

.form-feedback {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
}

.form-feedback.success {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25D366;
}

.form-feedback.error {
  background: rgba(255, 87, 87, 0.1);
  border: 1px solid rgba(255, 87, 87, 0.3);
  color: #ff5757;
}

/* ============================================
   16. FOOTER
   ============================================ */
.cv-footer {
  background: #654c38;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-top {
  padding: 70px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo img {
  height: 48px;
}

.footer-bio {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 340px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
}

.footer-contact a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px 0;
  display: flex;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.85);
}

.footer-dev {
  color: rgba(255, 255, 255, 0.55);
}

.footer-dev span {
  color: rgba(255, 255, 255, 0.85);
}

/* ============================================
   17. WHATSAPP FLUTUANTE
   ============================================ */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: floatPulse 3s ease-in-out infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 40px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp__tooltip {
  position: absolute;
  right: 70px;
  background: rgba(255, 255, 255, 0.96);
  color: #4b4b4b;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 4px 16px rgba(101, 76, 56, 0.12);
}

.floating-whatsapp:hover .floating-whatsapp__tooltip {
  opacity: 1;
}

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 40px rgba(37, 211, 102, 0.7); }
}

/* ============================================
   18. ANIMAÇÕES DE ENTRADA
   ============================================ */
[data-animate] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="fade-up"] {
  transform: translateY(40px);
}

[data-animate="fade-left"] {
  transform: translateX(40px);
}

[data-animate="fade-right"] {
  transform: translateX(-40px);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translate(0);
}

/* ============================================
   19. UTILITÁRIOS
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ============================================
   20. RESPONSIVIDADE - TABLET (1024px)
   ============================================ */
@media (max-width: 1024px) {
  :root {
    --section-py: 80px;
  }

  .header-nav { display: none; }
  .header-whatsapp span { display: inline; }
  .header-hamburger { display: flex; }
  .mobile-menu { display: block; }

  .hero-layout {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .hero-title { font-size: clamp(32px, 4.5vw, 52px); }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-layout { grid-template-columns: 1fr; gap: 60px; }
  .about-media { display: none; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .talks-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-col--brand { grid-column: 1 / -1; }
  .cta-layout { grid-template-columns: 1fr; gap: 50px; }
  .social-stats-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================
   21. RESPONSIVIDADE - MOBILE (768px)
   ============================================ */
@media (max-width: 768px) {
  :root {
    --section-py: var(--section-py-sm);
    --container-px: 16px;
  }

  /* Header Mobile */
  .header-whatsapp { display: none; }
  .header-hamburger { display: flex; }

  /* Hero Mobile */
  .hero-bg {
    background-image: url('../images/hero-bg-mobile.jpg');
    background-position: center;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: 100vh;
    padding: 40px 0;
  }

  .hero-photo {
    display: none; /* Foto aparece no BG no mobile */
  }

  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.88) 0%,
      rgba(255, 255, 255, 0.72) 60%,
      rgba(255, 255, 255, 0.88) 100%
    );
  }

  .hero-content {
    padding: 0;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* Stats Mobile */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card { padding: 28px 16px; }

  /* About Mobile */
  .about-layout { grid-template-columns: 1fr; }
  .about-media { display: none; }
  .about-content { padding-right: 0; }

  /* Audience Mobile */
  .audience-grid { grid-template-columns: 1fr; }

  /* Talks Mobile */
  .talks-grid { grid-template-columns: 1fr; }
  .talks-cta { padding: 30px 20px; flex-direction: column; }

  /* Testimonials Mobile */
  .testimonial-card { padding: 28px 24px; }
  .testimonials-swiper .swiper-button-prev,
  .testimonials-swiper .swiper-button-next { display: none; }

  /* Social Mobile */
  .social-stats-grid { grid-template-columns: 1fr; max-width: 300px; }

  /* CTA Mobile */
  .cta-layout { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }

  /* Footer Mobile */
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  /* Floating WA Mobile */
  .floating-whatsapp { bottom: 20px; right: 20px; }
  .floating-whatsapp__tooltip { display: none; }
}

/* ============================================
   22. RESPONSIVIDADE - SMALL MOBILE (480px)
   ============================================ */
@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.75rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-card__number { font-size: 2.2rem; }
  .btn--lg { font-size: 0.95rem; padding: 14px 28px; }
}
