/* Evitar corte do dropdown do intl-tel-input em wrappers comuns */
.form-group,
.input-wrapper {
  overflow: visible;
}

/* Estilos simples para os novos consentimentos */
.consents {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  align-items: center;
}
.opt-in-form .consents {
  text-align: left;
  justify-items: start;
}
/* Tornar os consentimentos inline e próximos */
.opt-in-form .consents {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 10px;
}
.consent-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #374151; /* texto escuro para boa leitura sobre fundo branco */
}
.opt-in-form .consent-item span {
  color: #374151 !important;
  font-weight: 500;
}
.opt-in-form .consent-item input[type="checkbox"] {
  margin-right: 6px;
}
.opt-in-form .consent-item {
  margin-right: 8px;
  gap: 6px;
}
.consent-item.error {
  outline: 2px solid #ef4444;
  outline-offset: 2px;
  border-radius: 6px;
  padding: 4px;
}
.consent-help {
  grid-column: 1 / -1;
  font-size: 12px;
  color: #4b5563; /* um pouco mais escuro para contraste */
  margin-top: 4px;
}
/* Forçar cor escura dentro do card branco */
.opt-in-form .consent-help {
  color: #4b5563 !important;
}
/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-gold: #d4af37;
  --primary-navy: #1b365d;
  --primary-white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #6c757d;
  --dark-gray: #343a40;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --border-radius: 8px;
  --transition: all 0.3s ease;
  /* Gutter padrão para containers */
  --container-gutter: 20px;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--primary-white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  color: var(--primary-navy);
}

h2 {
  font-size: 2.5rem;
  color: var(--primary-navy);
}

h3 {
  font-size: 1.8rem;
  color: var(--primary-navy);
}

p {
  margin-bottom: 1rem;
  color: var(--medium-gray);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary-gold);
  color: var(--primary-white);
  border-color: var(--primary-gold);
}

.btn-primary:hover {
  background-color: #b8941f;
  border-color: #b8941f;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
  background-color: #0f2a4a;
  border-color: #0f2a4a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

/* Increase specificity so outline border wins over generic .btn rules loaded later */
.btn.btn-outline {
  border: 2px solid var(--primary-navy);
}

.btn-outline:hover {
  background-color: var(--primary-navy);
  color: var(--primary-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
  background-color: #25d366;
  color: #ffffff;
  border-color: #25d366;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  min-width: 200px;
}

.btn-whatsapp:hover {
  background-color: #128c7e;
  border-color: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  color: #ffffff;
  text-decoration: none;
}

.btn-whatsapp:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Responsividade específica para o botão WhatsApp */
@media (max-width: 768px) {
  .btn-whatsapp {
    padding: 12px 20px;
    font-size: 0.95rem;
    min-width: 180px;
  }
}

@media (max-width: 480px) {
  .btn-whatsapp {
    padding: 10px 16px;
    font-size: 0.9rem;
    min-width: 160px;
  }
}

@media (max-width: 360px) {
  .btn-whatsapp {
    padding: 8px 12px;
    font-size: 0.85rem;
    min-width: 140px;
  }
}

.btn-full {
  width: 100%;
}

/* Header */
.header {
  background-color: var(--primary-white);
  box-shadow: var(--shadow);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  min-height: 70px;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px 0;
  text-decoration: none;
}

.logo h2 {
  color: var(--primary-navy);
  margin: 0 0 4px 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.logo span {
  color: var(--primary-gold);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.3;
  opacity: 0.9;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--dark-gray);
  font-weight: 500;
  transition: var(--transition);
}

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

.loja-link {
  background-color: var(--primary-gold);
  color: var(--primary-white) !important;
  padding: 8px 16px;
  border-radius: var(--border-radius);
}

.loja-link:hover {
  background-color: #b8941f;
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  z-index: 10000;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-navy);
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Botão Voltar (header de atendimento) */
.btn-back,
.btn-back:visited {
  background-color: #ffffff;
  color: #1b365d;
  border: 2px solid #1b365d;
  font-weight: 500;
  padding: 10px 16px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 8px;
}

.btn-back:hover {
  background-color: #1b365d;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Menu Mobile - Botão hambúrguer sempre visível no mobile */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex !important;
  }

  .nav-container {
    padding: 0.8rem 16px;
    min-height: 80px;
  }

  .logo {
    padding: 16px 0;
  }

  .logo h2 {
    font-size: 1.4rem;
    margin-bottom: 6px;
  }

  .logo span {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0.6rem 12px;
    min-height: 75px;
  }

  .logo h2 {
    font-size: 1.3rem;
  }

  .logo span {
    font-size: 0.8rem;
  }
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(
    135deg,
    var(--light-gray) 0%,
    var(--primary-white) 100%
  );
  width: 100%;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 80vh;
  width: 100%;
  box-sizing: border-box;
  grid-template-areas: "content image";
}

.hero-content {
  grid-area: content;
  width: 100%;
  box-sizing: border-box;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-navy) 0%,
    var(--primary-gold) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--medium-gray);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-subtitle {
  font-style: italic;
  color: var(--primary-gold);
  font-weight: 500;
}

.hero-image {
  grid-area: image;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  max-width: 100%;
  display: block;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Sobre Section */
.sobre {
  padding: 80px 0;
  background-color: var(--primary-white);
}

.sobre-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mission-quote {
  font-size: 1.5rem;
  color: var(--primary-gold);
  font-weight: 600;
  font-style: italic;
  margin-bottom: 2rem;
  padding: 1rem;
  border-left: 4px solid var(--primary-gold);
  background-color: var(--light-gray);
}

.bio p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.cta-section {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.sobre-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

/* Produtos Section */
.produtos {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.produtos h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--medium-gray);
  margin-bottom: 3rem;
}

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

.produto-card {
  background-color: var(--primary-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.produto-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.produto-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 2px solid var(--primary-gold);
}

.produto-image {
  height: 200px;
  overflow: hidden;
}

.produto-card.featured .produto-image {
  height: auto;
}

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

.produto-content {
  padding: 2rem;
}

.produto-content h3 {
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.produto-content p {
  margin-bottom: 1.5rem;
}

.produto-features {
  list-style: none;
  margin-bottom: 2rem;
}

.produto-features li {
  padding: 0.5rem 0;
  color: var(--medium-gray);
  position: relative;
  padding-left: 1.5rem;
}

.produto-features li::before {
  content: "✓";
  color: var(--primary-gold);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Opt-in Section */
.opt-in {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-navy) 0%, #0f2a4a 100%);
  color: var(--primary-white);
}

.opt-in-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* gap: 4rem; */
  align-items: center;
}

.opt-in h2 {
  color: var(--primary-white);
  margin-bottom: 1.5rem;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.opt-in p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

/* Evitar separação de palavras no texto dos benefícios */
.opt-in .benefit span:last-child {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.benefit-icon {
  background-color: var(--primary-gold);
  color: var(--primary-white);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.8rem;
}

.opt-in-form {
  background-color: var(--primary-white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  color: #111827; /* texto escuro dentro do card branco */
}

.opt-in-form h3 {
  color: var(--primary-navy);
  text-align: center;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
  text-align: left;
}

.form-group input:not([type="checkbox"]),
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--primary-gold);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
  text-align: left; /* alinhado à esquerda para melhor UX */
}

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

/* Centralizar o Turnstile */
.cf-turnstile {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}

.form-disclaimer {
  font-size: 0.8rem;
  color: var(--medium-gray);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.4;
}

/* Depoimentos Section */
.depoimentos {
  padding: 80px 0;
  background-color: var(--primary-white);
}

.depoimentos h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.depoimentos .section-subtitle {
  text-align: center;
  color: var(--medium-gray);
  margin-bottom: 2rem;
}

/* Filtros */
.depoimentos-filters {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 24px 0 32px;
  justify-content: center;
  padding: 0 20px;
}

.chip {
  border: 2px solid #e9ecef;
  background: #f8f9fa;
  padding: 12px 24px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  font-weight: 600;
  color: #6c757d;
  position: relative;
  overflow: hidden;
}

.chip::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.chip:hover::before {
  left: 100%;
}

.chip:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.chip.is-active {
  background: var(--primary-gold);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

/* Grid de depoimentos */
.depoimentos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
  align-items: start;
}

/* Centralizar quando há apenas um depoimento */
.depoimentos-grid.depoimentos-grid-single {
  grid-template-columns: minmax(0, 420px);
  justify-content: center;
  margin: 32px auto 0;
}

@media (min-width: 641px) {
  .depoimentos-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .depoimentos-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
}

/* Mobile: melhorar espaçamento dos depoimentos */
@media (max-width: 768px) {
  .depoimentos-filters {
    gap: 12px;
    margin: 20px 0 28px;
    padding: 0 16px;
  }

  .chip {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  .depoimentos-grid {
    gap: 24px;
    margin-top: 24px;
  }

  .depoimento-autor {
    padding: 20px 24px 0 24px;
    gap: 10px;
  }

  .depoimento-autor strong {
    font-size: 1.3rem;
  }

  .depoimento-autor .relacao {
    font-size: 1.1rem;
  }

  .depoimento .form-disclaimer {
    padding: 20px 24px 24px 24px;
    font-size: 1rem;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  .depoimentos-filters {
    gap: 10px;
    margin: 16px 0 24px;
    padding: 0 12px;
  }

  .chip {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .depoimentos-grid {
    gap: 20px;
    padding: 0 12px;
  }

  .depoimento-autor {
    padding: 18px 20px 0 20px;
  }

  .depoimento .form-disclaimer {
    padding: 18px 20px 20px 20px;
    font-size: 0.95rem;
  }
}

/* Cards de depoimento */
.depoimento {
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.depoimento:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: #e0e0e0;
}

.depoimento::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-gold), var(--primary-navy));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.depoimento:hover::before {
  opacity: 1;
}

.depoimento .produto-image {
  position: relative;
  background: #000;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.depoimento .produto-image:hover {
  transform: scale(1.02);
}

.depoimento .depoimento-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px 20px 0 0;
}

.depoimento-autor {
  padding: 16px 20px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.depoimento-autor strong {
  color: var(--primary-navy);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.depoimento-autor .relacao {
  color: var(--dark-gray);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  opacity: 0.9;
  margin: 0;
}

/* Remover badge antigo */
.badge {
  display: none;
}

.depoimento .form-disclaimer {
  padding: 16px 20px 20px 20px;
  font-style: italic;
  color: #555;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
  text-align: center;
}

/* Modal de vídeo - SEMPRE OVERLAY */
.video-overlay {
  position: fixed !important;
  inset: 0 !important;
  display: none !important;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  padding: 20px;
  /* Garantir que seja sempre overlay */
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  /* Garantir que seja sempre oculta por padrão */
  visibility: hidden !important;
  opacity: 0 !important;
}

/* FORÇAR SEMPRE POSITION FIXED */
.video-overlay[style*="position: relative"] {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
}

.video-overlay[aria-hidden="true"] {
  display: none;
}

.video-overlay[aria-hidden="false"] {
  position: fixed !important;
  inset: 0 !important;
  display: grid !important;
  place-items: center;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  padding: 16px;
  /* Garantir que seja visível quando ativa */
  visibility: visible !important;
  opacity: 1 !important;
}

.video-overlay__content {
  position: relative;
  width: min(960px, 95vw);
  max-width: 95vw;
  max-height: 90vh;
  overflow: hidden; /* Sem barra de rolagem; vídeo se ajusta pela regra abaixo */
  background: #fff;
  border-radius: 12px;
  padding: 24px 24px 40px 24px; /* Muito mais espaço embaixo para o botão */
  box-sizing: border-box;
}

/* Garante que embeds respeitem o container da modal */
.video-overlay__content video,
.video-overlay__content iframe {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
}

.video-overlay__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.7);
  border: 0;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Garantir que seja clicável no mobile */
  min-width: 44px;
  min-height: 44px;
  z-index: 1000;
  pointer-events: auto;
  transition: all 0.3s ease;
}

.video-overlay__close:hover {
  background-color: #c0392b;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
}

.video-overlay__content h3 {
  margin-bottom: 16px;
  color: #333;
  font-size: 1.5rem;
}

.video-overlay__video {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9; /* Mantém 16:9 em qualquer tela */
  background: #000;
  border-radius: 8px;
  overflow: hidden; /* Impede o iframe de "vazar" */
  box-sizing: border-box;
  /* Mantém o vídeo dentro da altura da modal (descontando título/botão/padding) */
  max-height: calc(90vh - 120px);
}

.video-overlay__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  border: 0;
  box-sizing: border-box;
  border-radius: inherit;
}

.video-overlay__content .form-disclaimer {
  color: #666;
  font-style: italic;
  text-align: center;
  margin: 0;
}

/* Contato Section */
.contato {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.contato h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.contato-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contato-info h3 {
  margin-bottom: 1rem;
}

.contato-info p {
  margin-bottom: 2rem;
}

.contato-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contato-method {
  padding: 2rem;
  background-color: var(--primary-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f0f0f0;
}

.contato-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contato-method h4 {
  color: var(--primary-navy);
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.contato-method p {
  margin-bottom: 1.5rem;
  color: var(--medium-gray);
  font-size: 0.95rem;
  line-height: 1.5;
}

.contato-method a {
  color: var(--primary-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contato-method a:hover {
  color: #b8941f;
}

/* Destaque especial para o método WhatsApp */
/* .contato-method:first-child {
  border: 2px solid #25d366;
  background: linear-gradient(135deg, #f8fffe 0%, #f0fff4 100%);
} */

/* .contato-method:first-child h4 {
  color: #128c7e;
}

.contato-method:first-child p {
  color: #059669;
} */

.contato-form {
  background-color: var(--primary-white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.contato-form h3 {
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Footer */
.footer {
  background-color: var(--primary-navy);
  color: var(--primary-white);
  padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
  color: var(--primary-white);
  margin-bottom: 1rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--primary-gold);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--primary-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
}

/* Footer mobile formatting */
@media (max-width: 768px) {
  /* Footer: duas linhas — 1) Nome  2) Psicóloga | CRP RJ 3557 */
  .footer-bottom .footer-info {
    display: block;
    text-align: center;
    line-height: 1.6;
    margin: 0.25rem 0;
  }
  .footer-bottom .footer-info-name {
    display: block; /* quebra linha após o nome */
  }
  /* Esconde o primeiro separador (–) no mobile, mantém o segundo (|) */
  .footer-bottom .footer-info-sep:first-of-type {
    display: none !important;
  }
  .footer-bottom .footer-info-sep:last-of-type {
    display: inline;
  }

  /* REGRA BRUTA PARA ESCONDER O HÍFEN NO MOBILE */
  .footer-info span.footer-info-sep:first-of-type {
    display: none !important;
  }

  /* Se ainda não funcionar, esconde TODOS os hífens */
  .footer-info span:contains("–") {
    display: none !important;
  }

  .footer-bottom .footer-address {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    line-height: 1.6;
    margin: 0.25rem 0;
  }
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-float span {
  font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Menu Mobile - SOLUÇÃO COMPLETA */
  .nav-menu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
  }

  .nav-menu.is-open {
    display: flex !important;
  }

  .nav-menu li {
    margin: 0;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-menu a {
    display: block;
    padding: 1.2rem 2rem;
    color: #1b365d;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    width: 100%;
    text-align: left;
  }

  .nav-menu li a:hover,
  .nav-menu li a.active {
    background: #d4af37;
    color: #ffffff;
    transform: translateX(5px);
  }

  /* Botão Hambúrguer - VISÍVEL E FUNCIONAL */
  .nav-toggle {
    display: flex !important;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 10000;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
  }

  .nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #1b365d;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
  }

  /* Animações do botão hambúrguer */
  .nav-toggle.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background-color: #d4af37;
  }

  .nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
  }

  .nav-toggle.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background-color: #d4af37;
  }

  /* Garantir que o container tenha posição relativa */
  .nav-container {
    position: relative !important;
  }

  .hero-container {
    grid-template-columns: 1fr;
    grid-template-areas: "content" "image";
    text-align: center;
    gap: 2rem;
    min-height: auto;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-image {
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .hero-image img {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

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

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .sobre-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-section {
    flex-direction: column;
    align-items: center;
  }

  .produto-card.featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .opt-in-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contato-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .container {
    padding: 0 15px;
    /* manter variável consistente com o gutter real no mobile */
    --container-gutter: 15px;
    width: 100%;
    box-sizing: border-box;
  }

  /* Otimizações específicas para depoimentos no mobile */
  .depoimentos {
    padding: 40px 0;
  }

  .depoimentos h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .depoimentos-filters {
    gap: 6px;
    margin: 12px 0 20px;
  }

  .chip {
    padding: 6px 12px;
    font-size: 13px;
  }

  .depoimentos-grid {
    gap: 12px;
    margin-top: 24px;
  }

  .depoimento .produto-image {
    /*aspect-ratio: 16/9;*/
  }

  .depoimento .btn {
    right: 8px;
    bottom: 8px;
    padding: 6px 12px;
    font-size: 12px;
  }

  .depoimento-autor {
    padding: 10px 12px 0 12px;
  }

  .depoimento .form-disclaimer {
    padding: 6px 12px 12px 12px;
    font-size: 0.9rem;
  }

  /* Modal de vídeo otimizado para mobile */
  .video-overlay {
    padding: 10px;
  }

  .video-overlay__content {
    width: 95vw;
    padding: 16px;
    max-height: 85vh;
  }

  .video-overlay__close {
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    font-size: 1.5rem;
  }

  .video-overlay__content h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .hero-container {
    padding: 0 10px;
    gap: 1.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .produtos-grid {
    grid-template-columns: 1fr;
  }

  .depoimentos-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* Otimizações extras para telas muito pequenas */
  .depoimentos {
    padding: 30px 0;
  }

  .depoimentos h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .depoimentos .section-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .depoimentos-filters {
    gap: 4px;
    margin: 10px 0 16px;
  }

  .chip {
    padding: 5px 10px;
    font-size: 12px;
  }

  .depoimento .btn {
    right: 6px;
    bottom: 6px;
    padding: 5px 10px;
    font-size: 11px;
  }

  .depoimento-autor {
    padding: 8px 10px 0 10px;
  }

  .depoimento .form-disclaimer {
    padding: 5px 10px 10px 10px;
    font-size: 0.85rem;
  }

  /* Modal ainda mais compacto */
  .video-overlay__content {
    width: 98vw;
    padding: 12px;
    max-height: 80vh;
  }

  .video-overlay__close {
    top: 6px;
    right: 6px;
    width: 28px;
    height: 28px;
    font-size: 1.2rem;
  }
}

/* Media query específica para dispositivos muito pequenos */
@media (max-width: 360px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-container {
    grid-template-columns: 1fr;
    grid-template-areas: "content" "image";
    padding: 0 10px;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-image {
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .hero-image img {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .depoimentos h2 {
    font-size: 1.5rem;
  }

  .chip {
    padding: 4px 8px;
    font-size: 11px;
  }

  .depoimento .btn {
    padding: 4px 8px;
    font-size: 10px;
  }
}

/* Otimizações para orientação landscape no mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "content image";
    min-height: auto;
    padding: 20px 15px;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-image {
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .hero-image img {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .depoimentos {
    padding: 30px 0;
  }

  .video-overlay__content {
    max-height: 75vh;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content,
.sobre-content,
.produto-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Anchor offset so section titles are not hidden under the fixed header */
:root {
  --header-offset: 90px;
}

@media (max-width: 768px) {
  :root {
    --header-offset: 100px;
  }
}

section[id] {
  scroll-margin-top: var(--header-offset);
}

/* Checkbox Styles for LGPD Consent */
.checkbox-group {
  margin: 1.5rem 0;
  text-align: center;
}

/* Layout e texto do consentimento (sobrepõe .opt-in p) */
.opt-in-form .consent-text {
  color: var(--medium-gray) !important;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 8px;
  text-align: left;
}

/* Wrapper para organizar as duas checkboxes lado a lado e responsivo */
.checkbox-group .checkboxes {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.checkbox-group .checkbox-hint {
  display: none;
  margin-top: 6px;
  font-size: 0.8rem;
  text-align: left;
}

.checkbox-group.error .checkbox-hint {
  display: block;
  color: #dc3545;
}

/* Estado de erro aplicado no grupo */
.checkbox-group.error {
  outline: 2px solid #dc3545;
  outline-offset: 3px;
  border-radius: 8px;
  padding: 6px;
}
.checkbox-group.error .checkmark {
  border-color: #dc3545 !important;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--medium-gray);
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--medium-gray);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background-color: var(--primary-gold);
  border-color: var(--primary-gold);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  color: white;
  font-weight: bold;
  font-size: 12px;
}

.checkbox-label:hover .checkmark {
  border-color: var(--primary-gold);
}

/* Social Links Improvements */
.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  transition: var(--transition);
}

.social-link:hover {
  color: var(--primary-gold);
  transform: translateX(5px);
}

.social-icon {
  font-size: 1.2rem;
}

/* Form Disclaimer Links */
.form-disclaimer a {
  color: var(--medium-gray);
  text-decoration: none;
  font-size: 0.75rem;
  transition: var(--transition);
  display: inline-block;
  margin: 0 2px;
}

.form-disclaimer a:hover {
  color: var(--primary-navy);
}

/* CRP Styling */
.crp {
  font-weight: 500;
  color: var(--primary-gold);
}

/* Enhanced Form Validation */
.form-group input:not([type="checkbox"]),
.form-group textarea {
  border: 2px solid var(--primary-gold);
  transition: var(--transition);
}

.form-group input:not([type="checkbox"]):focus,
.form-group textarea:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

/* Estilos de erro com alta especificidade */
.form-group input.error,
.form-group textarea.error {
  border-color: #dc3545 !important;
  animation: shake 0.5s ease-in-out;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2) !important;
}

.checkbox-label.error .checkmark {
  border-color: #dc3545 !important;
  animation: shake 0.5s ease-in-out;
}

/* Debug: Garantir que a classe error seja visível */
.form-group input.error {
  background-color: rgba(220, 53, 69, 0.05) !important;
}

.form-group textarea.error {
  background-color: rgba(220, 53, 69, 0.05) !important;
}

/* Regra adicional com especificidade máxima */
input.error,
textarea.error {
  border-color: #dc3545 !important;
  background-color: rgba(220, 53, 69, 0.05) !important;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2) !important;
}

/* Shake Animation */
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-5px);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translateX(5px);
  }
}

/* Message Styles */
.form-message {
  padding: 15px;
  margin: 15px 0;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-align: center;
  animation: slideDown 0.3s ease-out;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus States for Better Accessibility */
button:focus,
input:focus,
textarea:focus,
a:focus {
  outline: 2px solid var(--primary-gold);
  outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  :root {
    --primary-gold: #b8860b;
    --primary-navy: #000080;
    --medium-gray: #404040;
  }
}

/* Regra específica para o botão WhatsApp na seção de contato */
.contato-method .btn-whatsapp {
  background-color: #25d366 !important;
  color: #ffffff !important;
  border-color: #25d366 !important;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  min-width: 200px;
}

.contato-method .btn-whatsapp:hover {
  background-color: #128c7e !important;
  border-color: #128c7e !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  color: #ffffff !important;
  text-decoration: none;
}

.contato-method .btn-whatsapp:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Botão Fechar Depoimento - Menos Destaque */
.btn-close-depoimento {
  margin: 20px auto 16px; /* Mais espaço embaixo */
  width: auto;
  min-width: 180px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 500;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  color: #6c757d;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  display: block;
  text-align: center;
  /* Garantir que seja clicável no mobile */
  min-height: 44px;
  z-index: 1000;
  pointer-events: auto;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
  /* Centralização forçada */
  margin-left: auto;
  margin-right: auto;
}

/* ===== Responsividade Mobile para Modal de Vídeo ===== */
@media (max-width: 768px) {
  .video-overlay__content {
    padding: 16px 16px 32px 16px; /* Muito mais espaço embaixo no mobile */
    width: 95vw;
    max-width: 95vw;
  }

  .video-overlay__video {
    width: 100%;
    max-width: 100%;
  }

  .video-overlay__close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .btn-close-depoimento {
    margin: 20px auto 16px; /* Muito mais espaço embaixo no mobile */
    min-width: 160px;
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

.btn-close-depoimento:hover {
  background: linear-gradient(135deg, #b8941f 0%, #a0851a 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-close-depoimento:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.form-disclaimer span {
  font-size: 0.75rem;
  margin: 0 2px;
  flex-shrink: 0;
}

/* Responsividade para o formulário de inscrição */
@media (max-width: 768px) {
  .opt-in-form {
    padding: 1.5rem;
    margin: 0 10px;
  }

  .opt-in-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .form-group input,
  .form-group textarea {
    font-size: 16px; /* Evita zoom no iOS */
    padding: 14px 12px;
  }

  /* Centralizar e ajustar links do disclaimer */
  .form-disclaimer {
    font-size: 0.7rem;
    line-height: 1.5;
    margin-top: 1.5rem;
    padding: 0 10px;
    gap: 4px;
  }

  .form-disclaimer a {
    font-size: 0.7rem;
    margin: 0;
  }

  .form-disclaimer span {
    font-size: 0.7rem;
    margin: 0 2px;
  }
}

@media (max-width: 480px) {
  .opt-in-form {
    padding: 1rem;
    margin: 0 5px;
  }

  .opt-in-form h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px 10px;
  }

  /* Ajustes específicos para mobile pequeno */
  .form-disclaimer {
    font-size: 0.65rem;
    line-height: 1.6;
    margin-top: 1.2rem;
    padding: 0 5px;
    gap: 2px;
  }

  .form-disclaimer a {
    font-size: 0.65rem;
    margin: 0;
  }

  .form-disclaimer span {
    font-size: 0.65rem;
    margin: 0 1px;
  }
}

/* ===== SOCIAL ICONS SVG ===== */
.footer-section.footer-social {
  padding-block: 0.5rem;
}

.footer-section.footer-social h4 {
  margin: 0 0 0.75rem 0;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.2px;
  color: var(--primary-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 0.5rem;
}

/* Fallback para ícones SVG */
.footer-social .social-link svg {
  display: block !important;
  width: 16px !important;
  height: 16px !important;
  fill: currentColor !important;
  stroke: currentColor !important;
  overflow: visible !important;
}

/* Correções específicas para mobile e tablet */
@media (max-width: 768px) {
  .footer-social .social-link svg {
    width: 16px !important;
    height: 16px !important;
    display: block !important;
    fill: currentColor !important;
    stroke: currentColor !important;
    overflow: visible !important;
    max-width: 16px !important;
    max-height: 16px !important;
  }

  .footer-social .social-link svg rect,
  .footer-social .social-link svg circle,
  .footer-social .social-link svg polygon,
  .footer-social .social-link svg path {
    fill: currentColor !important;
    stroke: currentColor !important;
  }
}

.social-list {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease,
    color 0.2s ease, background-color 0.2s ease;
  will-change: transform;
  font-size: 0.9rem;
  font-weight: 500;
}

.social-link .icon {
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor;
  stroke: currentColor;
  flex-shrink: 0;
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: currentColor;
  flex-shrink: 0;
}

.social-link svg rect {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.social-link svg circle,
.social-link svg polygon,
.social-link svg path {
  fill: currentColor;
  stroke: none;
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--primary-gold);
  border-color: var(--primary-gold);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  outline: none;
}

/* Acessibilidade: reduz animações */
@media (prefers-reduced-motion: reduce) {
  .social-link {
    transition: none;
  }
  .social-link:hover {
    transform: none;
    box-shadow: none;
  }
}

/* Layout compacto em telas pequenas */
@media (max-width: 480px) {
  .social-link {
    padding: 0.35rem 0.5rem;
    font-size: 0.85rem;
    gap: 0.3rem;
  }
  .social-link .icon,
  .social-link svg {
    width: 14px !important;
    height: 14px !important;
    display: block !important;
    fill: currentColor !important;
    stroke: currentColor !important;
    overflow: visible !important;
    max-width: 14px !important;
    max-height: 14px !important;
  }

  /* Força renderização SVG no mobile */
  .footer-social .social-link svg * {
    fill: currentColor !important;
    stroke: currentColor !important;
  }

  /* Correção específica para Safari mobile */
  .footer-social .social-link svg {
    -webkit-transform: translateZ(0) !important;
    transform: translateZ(0) !important;
    -webkit-backface-visibility: hidden !important;
    backface-visibility: hidden !important;
  }
}

/* Correção para iOS Safari */
@supports (-webkit-touch-callout: none) {
  .footer-social .social-link svg {
    width: 16px !important;
    height: 16px !important;
    fill: currentColor !important;
    stroke: currentColor !important;
    display: block !important;
  }
}
