/* ============================================
   CLÍNICA ODONTOLÓGICA DR. GUILHERME PETER
   Paleta: Azul Marinho Escuro + Azul Claro (da logo)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

/* Skip Link - Accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--primary-dark);
  color: #fff;
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  z-index: 9999;
  font-weight: 600;
  transition: top 0.3s;
}
.skip-link:focus {
  top: 0;
}

:root {
  /* Paleta extraída da logo */
  --primary: #1e3a6e;          /* Azul marinho médio (botões, destaques) */
  --primary-dark: #0b1a3b;     /* Azul marinho muito escuro (navbar, footer - cor do fundo da logo) */
  --primary-medium: #2d5fb5;   /* Azul vibrante (hover, acentos) */
  --primary-light: #e8f0fe;    /* Azul clarinho (fundos de ícones, seções) */
  --accent-blue: #5a8fd4;      /* Azul claro da curva da logo (gradientes, detalhes) */
  --accent-light: #93c5fd;     /* Azul claro suave (gradientes hero) */

  --bg-white: #ffffff;
  --bg-sand: #f0f4fa;          /* Fundo secundário com tom azulado sutil */
  --bg-circle: #c7dcf5;        /* Círculo hero */
  --footer-bg: #0b1a3b;        /* Fundo do footer = azul escuro da logo */

  --text-dark: #0a1628;        /* Títulos - quase preto azulado */
  --text-gray: #3d4f6f;        /* Parágrafos */
  --text-light: #7a8ba8;       /* Textos secundários */

  --font-main: 'Montserrat', sans-serif;
  --border-radius-sm: 8px;
  --border-radius-lg: 16px;

  --shadow-sm: 0 2px 8px rgba(11, 26, 59, 0.06);
  --shadow-md: 0 4px 16px rgba(11, 26, 59, 0.08);
  --shadow-lg: 0 8px 32px rgba(11, 26, 59, 0.12);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  color: var(--text-gray);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   TOPBAR & NAVBAR
   ============================================ */
.topbar {
  background-color: var(--primary-dark);
  padding: 8px 0;
  font-size: 0.82rem;
  color: var(--accent-light);
  border-bottom: 1px solid rgba(93, 143, 212, 0.15);
}

.topbar .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-item svg {
  stroke: var(--accent-blue);
}

.navbar {
  background-color: var(--primary-dark);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(11, 26, 59, 0.3);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
}

.logo-img {
  height: 36px;
  width: auto;
  border-radius: 4px;
}

.logo-break {
  display: none;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.92rem;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-blue);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-medium) 100%);
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(30, 58, 110, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-medium) 0%, var(--primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(30, 58, 110, 0.45);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 24px;
  border: 2px solid var(--primary);
  border-radius: 30px;
  transition: all 0.3s;
  background: transparent;
}

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

.floating-wpp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s;
  animation: pulse-wpp 2s infinite;
}

@keyframes pulse-wpp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.floating-wpp:hover {
  transform: scale(1.1);
}

.floating-wpp svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding: 80px 0 40px;
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--primary-light) 50%, var(--bg-white) 100%);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%; width: 120%; height: 200%;
  background-image: radial-gradient(circle at 20% 50%, rgba(90, 143, 212, 0.12) 0%, transparent 40%),
                    radial-gradient(circle at 80% 80%, rgba(30, 58, 110, 0.08) 0%, transparent 40%);
  z-index: 0;
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  border: 1px solid rgba(30, 58, 110, 0.1);
}

.hero-content h1 {
  color: var(--text-dark);
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 16px;
  font-weight: 800;
}

.hero-content h1 span {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content h2 {
  font-size: 1.2rem;
  color: var(--text-gray);
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-content p {
  margin-bottom: 28px;
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 420px;
  background: linear-gradient(135deg, var(--bg-circle) 0%, rgba(90, 143, 212, 0.2) 100%);
  border-radius: 50%;
  z-index: -1;
}

.hero-image img {
  max-width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-lg);
}

@keyframes floatBadge {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.experience-badge {
  position: absolute;
  right: -10px;
  top: 50%;
  background-color: #fff;
  color: var(--text-dark);
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
  animation: floatBadge 3s ease-in-out infinite;
  border: 1px solid var(--primary-light);
}

.experience-badge span {
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   DIFERENCIAIS BAR
   ============================================ */
.diferenciais-bar {
  background: var(--primary-dark);
  padding: 24px 0;
  position: relative;
  z-index: 2;
}

.diferenciais-bar .container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.diferencial-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.diferencial-item svg {
  stroke: var(--accent-blue);
  flex-shrink: 0;
}

.diferencial-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
}

.diferencial-item span {
  display: block;
  font-size: 0.78rem;
  color: var(--accent-light);
  font-weight: 400;
}

/* ============================================
   TEAM / EQUIPE
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.team-card {
  background: #fff;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(30, 58, 110, 0.06);
}

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

.team-photo {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg-circle) 100%);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s;
}

.team-card:hover .team-photo img {
  transform: scale(1.05);
}

.team-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
}

.placeholder-icon svg {
  stroke: var(--accent-blue);
  opacity: 0.7;
}

.team-info {
  padding: 24px;
}

.team-info h3 {
  color: var(--text-dark);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.team-specialty {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.team-cro {
  display: block;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.team-info p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-gray);
}

/* ============================================
   SECTIONS GENERAL
   ============================================ */
.section {
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.section-sand {
  background-color: var(--bg-sand);
}

.section-title {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-weight: 700;
}

.section-title span {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1rem;
  margin-bottom: 48px;
  color: var(--text-gray);
}

/* ============================================
   CAROUSEL
   ============================================ */
.carousel-container {
  position: relative;
  margin: 0 auto 40px;
  padding: 0 50px;
}

.carousel-track-wrapper {
  overflow: hidden;
  padding: 10px 0;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.card {
  flex: 0 0 calc(33.333% - 16px);
  margin-right: 24px;
  background: #fff;
  border: 1px solid rgba(30, 58, 110, 0.06);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}

.card:last-child {
  margin-right: 0;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: rgba(90, 143, 212, 0.2);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary-light) 0%, rgba(90, 143, 212, 0.15) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--primary);
}

.card h3 {
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-gray);
}

/* Carousel Controls */
.carousel-btn {
  position: absolute;
  top: calc(50% - 18px);
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-medium) 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(30, 58, 110, 0.3);
  font-size: 0.85rem;
}

.carousel-btn:hover {
  background: linear-gradient(135deg, var(--primary-medium) 0%, var(--primary) 100%);
  transform: scale(1.08);
}

.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #c7d4e8;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}

.dot.active {
  background-color: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* ============================================
   DEPOIMENTOS
   ============================================ */
.reviews-container {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.google-score {
  text-align: center;
  flex-shrink: 0;
  width: 200px;
  padding: 28px;
  background: #fff;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(30, 58, 110, 0.06);
  box-shadow: var(--shadow-md);
}

.google-score h3 { margin-bottom: 4px; color: var(--text-dark); font-weight: 800; }
.stars { color: #fbbc05; font-size: 1.5rem; letter-spacing: 2px; }
.google-logo { width: 80px; margin: 8px auto 0; }

.review-card {
  flex: 0 0 calc(50% - 12px);
  min-width: 0;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-info h4 {
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 600;
}

.reviewer-info span {
  font-size: 0.75rem;
  color: var(--text-light);
}

.review-card .stars {
  font-size: 1rem;
  margin-bottom: 8px;
  display: block;
}

/* Auto-sliding reviews */
.reviews-autoslide {
  flex: 1;
  overflow: hidden;
  position: relative;
  min-width: 0;
}

.reviews-track {
  display: flex;
  gap: 24px;
  animation: reviewsScroll 60s linear infinite;
  width: max-content;
}

.reviews-track:hover {
  animation-play-state: paused;
}

.reviews-autoslide .review-card {
  flex: 0 0 340px;
  min-width: 280px;
  max-width: 340px;
}

@keyframes reviewsScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   GALLERY / ESTRUTURA
   ============================================ */
.estrutura-scroll {
  margin: 0 -50px;
  padding: 0 50px;
}

.estrutura-scroll-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 10px 0;
}

.estrutura-scroll-track::-webkit-scrollbar {
  display: none;
}

.estrutura-scroll-card {
  flex: 0 0 calc(33.333% - 16px);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  height: 450px;
  position: relative;
  scroll-snap-align: start;
}

.estrutura-scroll-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.estrutura-scroll-card:hover img {
  transform: scale(1.05);
}

.gallery-card {
  flex: 0 0 calc(33.333% - 16px);
  padding: 0;
  border: none;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  height: 450px;
  position: relative;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(0deg, rgba(11, 26, 59, 0.8) 0%, transparent 100%);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  pointer-events: none;
}

/* ============================================
   ABOUT / SOBRE A CLÍNICA
   ============================================ */
.about {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-white);
}

.about .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  text-align: left;
}

.about-carousel {
  position: relative;
  width: 100%;
}

.about-carousel .carousel-track-wrapper {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(30, 58, 110, 0.08);
  padding: 0;
}

.about-slide {
  flex: 0 0 100%;
  margin: 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg-circle) 100%);
  padding: 40px 20px 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.about-slide img {
  width: 100%;
  display: block;
}

.about-content h2 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.about-content h3 {
  color: var(--text-dark);
  font-size: 1.15rem;
  margin-bottom: 24px;
  font-weight: 600;
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
  background: linear-gradient(135deg, var(--bg-sand) 0%, var(--primary-light) 100%);
}

.cta-final .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  text-align: left;
}

.blank-box {
  background-color: #fff;
  border: 1px solid rgba(30, 58, 110, 0.08);
  border-radius: var(--border-radius-lg);
  height: 350px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.blank-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================
   VIDEO GRID (ESTRUTURA)
   ============================================ */
.video-section-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 40px 0 24px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.video-card {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background: var(--primary-dark);
  aspect-ratio: 9 / 16;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 26, 59, 0.75) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 0.3s;
}

.video-card.playing .video-overlay {
  opacity: 0;
  pointer-events: none;
}

@media(hover: hover) and (pointer: fine) {
  .video-card.playing:hover .video-overlay {
    opacity: 1;
    pointer-events: auto;
  }
}

.video-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.8);
  background: rgba(11, 26, 59, 0.5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}

.video-play-btn:hover {
  background: var(--primary-medium);
  border-color: var(--primary-medium);
  transform: scale(1.1);
}

.video-play-btn svg {
  margin-left: 3px;
}

.video-overlay span {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  position: absolute;
  bottom: 16px;
  left: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: linear-gradient(180deg, var(--footer-bg) 0%, #060e1f 100%);
  color: rgba(147, 197, 253, 0.8);
  padding: 60px 0 20px;
  font-size: 0.93rem;
  border-top: 3px solid var(--accent-blue);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
  align-items: start;
}

.footer-logo {
  text-align: center;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  margin: 0 auto 12px;
  border-radius: 8px;
}

.footer-logo h3 {
  color: #ffffff;
  font-size: 1rem;
}

.footer-col h4 {
  font-size: 1.05rem;
  margin-bottom: 16px;
  font-weight: 700;
  color: #ffffff;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  transition: color 0.3s;
  color: rgba(147, 197, 253, 0.7);
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
}

.footer-info-item svg {
  width: 18px; height: 18px; flex-shrink: 0; stroke: var(--accent-blue);
}

.footer-info-item small {
  color: var(--text-light);
  font-size: 0.78rem;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(90, 143, 212, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent-light);
  fill: none;
}

.footer-social a:hover svg {
  stroke: #fff;
}

/* Facebook icon uses fill */
.footer-social a:nth-child(2) svg {
  fill: var(--accent-light);
  stroke: none;
}
.footer-social a:nth-child(2):hover svg {
  fill: #fff;
}

.footer-payment {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(90, 143, 212, 0.12);
}

.footer-payment small {
  color: var(--text-light);
  font-size: 0.8rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media(max-width: 992px) {
  .hero .container, .about .container, .cta-final .container {
    grid-template-columns: 1fr;
  }

  .hero { padding: 40px 0 0; }
  .hero-image { order: -1; }
  .hero-circle { width: 300px; height: 300px; }
  .experience-badge { right: 0; top: auto; bottom: 20px; }

  .team-grid { grid-template-columns: repeat(2, 1fr); }

  .card { flex: 0 0 calc(50% - 12px); }
  .gallery-card { flex: 0 0 100%; }
  .estrutura-scroll-card { flex: 0 0 80vw; height: 350px; }
  .estrutura-scroll { margin: 0 -24px; padding: 0 24px; overflow: visible; }
  .reviews-autoslide .review-card { flex: 0 0 160px; min-width: 140px; max-width: 160px; font-size: 0.8rem; padding: 16px; }
  .reviews-autoslide .review-card p { font-size: 0.75rem; }
  .reviews-autoslide .review-card h4 { font-size: 0.85rem; }
  #depoimentos { overflow: hidden; }
  .reviews-container { overflow: hidden; }

  .reviews-container { flex-direction: column; gap: 24px; }
  .google-score { width: 100%; border-bottom: 1px solid rgba(30,58,110,0.06); padding-bottom: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .diferenciais-bar .container { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    flex-direction: column;
    padding: 16px 24px;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(11, 26, 59, 0.3);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-btn { display: block; }
  .topbar { display: none; }
  .logo-break { display: inline; }

  .hero-content h1 { font-size: 1.9rem; }
  .hero-content { text-align: center; }
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .hero-cta-group .btn-secondary { justify-content: center; }
  .hero-badge { text-align: center; }

  .team-grid { grid-template-columns: 1fr; }
  .team-photo { height: 240px; }

  .card { flex: 0 0 100%; margin-right: 0; }

  .section { padding: 60px 0; }
  .section-title { font-size: 1.6rem; }
  .section-subtitle { margin-bottom: 32px; }

  .carousel-container { padding: 0 40px; }

  .gallery-card { height: 320px; }
  .estrutura-scroll-card { flex: 0 0 80vw; height: 320px; }
  .estrutura-scroll { margin: 0 -16px; padding: 0 16px; overflow: visible; }

  .about-content { text-align: center; }
  .about-content h2 { font-size: 1.5rem; }

  .cta-text { text-align: center; }

  .diferenciais-bar .container { grid-template-columns: 1fr 1fr; gap: 16px; }
  .diferencial-item { font-size: 0.85rem; }

  .floating-wpp { bottom: 16px; right: 16px; width: 54px; height: 54px; }
  .floating-wpp svg { width: 28px; height: 28px; }

  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-info-item { justify-content: center; }
  .footer-social { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; padding-bottom: 60px; }
}

@media(max-width: 480px) {
  .container { padding: 0 16px; }
  .diferenciais-bar .container { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 1.5rem; }
  .hero-content h2 { font-size: 1.05rem; }
  .hero-content p { font-size: 0.9rem; }
  .hero { padding: 30px 0 0; }
  .hero-image img { max-height: 350px; }
  .experience-badge { padding: 10px 16px; font-size: 0.85rem; }
  .experience-badge span { font-size: 1.3rem; }
  .video-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gallery-card { height: 280px; }
  .estrutura-scroll-card { height: 280px; }
  .carousel-container { padding: 0 32px; }
  .carousel-btn { width: 32px; height: 32px; font-size: 0.75rem; }
  .section-title { font-size: 1.4rem; }
  .blank-box { height: 280px; }
  .btn-primary { padding: 12px 24px; font-size: 0.9rem; }
  .btn-lg { padding: 14px 28px; font-size: 0.95rem; }
  .team-info { padding: 18px; }
  .team-info h3 { font-size: 1rem; }
  .team-info p { font-size: 0.85rem; }
}
