/* ============================================================
   DOCTORLYN — style.css
   Veterinária Domiciliar | Curitiba e Região Metropolitana
   ============================================================ */

/* ── GOOGLE FONTS carregadas via <link> no HTML ── */

/* ============================================================
   1. CSS VARIABLES & RESET
============================================================ */
:root {
  --blue-primary:    #4FA7E3;
  --blue-secondary:  #2C7BC0;
  --blue-dark:       #123B73;
  --blue-light:      #D6EEFA;
  --bg-light:        #F8FBFE;
  --white:           #FFFFFF;
  --text-dark:       #1a2e42;
  --text-body:       #4a5d70;
  --text-muted:      #7a92a8;
  --whatsapp:        #25D366;
  --whatsapp-dark:   #1da851;

  --font-display:    'Lora', Georgia, serif;
  --font-body:       'DM Sans', system-ui, sans-serif;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   40px;

  --shadow-soft:   0 4px 24px rgba(79, 167, 227, 0.10);
  --shadow-medium: 0 8px 40px rgba(18, 59, 115, 0.12);
  --shadow-strong: 0 16px 56px rgba(18, 59, 115, 0.18);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--bg-light);
  overflow-x: hidden;
  line-height: 1.7;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--text-dark);
  line-height: 1.25;
}

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

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

/* ============================================================
   2. UTILITÁRIOS GLOBAIS
============================================================ */

/* Espaçamento de seções */
.section-padding {
  padding: 96px 0;
}

/* Cabeçalho de seção padrão */
.section-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue-secondary);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Destaque de texto */
.highlight {
  color: var(--blue-primary);
  position: relative;
}

/* Botões globais */
.btn-whatsapp-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--whatsapp);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-whatsapp-main:hover,
.btn-whatsapp-main:focus {
  background: var(--whatsapp-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.45);
}

.btn-outline-primary-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--blue-secondary);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 100px;
  border: 2px solid var(--blue-primary);
  transition: all var(--transition);
}
.btn-outline-primary-custom:hover,
.btn-outline-primary-custom:focus {
  background: var(--blue-primary);
  color: #fff;
  border-color: var(--blue-primary);
  transform: translateY(-2px);
}

/* ============================================================
   3. NAVBAR
============================================================ */
.doctorlyn-nav {
  background: rgba(248, 251, 254, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(79, 167, 227, 0.12);
  padding: 14px 0;
  transition: all var(--transition);
}

.doctorlyn-nav.nav-scrolled {
  padding: 8px 0;
  background: rgba(248, 251, 254, 0.98);
  box-shadow: var(--shadow-soft);
}

/* Logo placeholder */
.logo-placeholder {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--blue-dark);
  letter-spacing: -0.01em;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--blue-primary);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Nav links */
.doctorlyn-nav .nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.doctorlyn-nav .nav-link:hover {
  color: var(--blue-primary);
  background: var(--blue-light);
}

/* Botão WhatsApp navbar */
.btn-whatsapp-nav {
  display: inline-flex;
  align-items: center;
  background: var(--whatsapp);
  color: #fff !important;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  transition: background var(--transition), transform var(--transition);
}
.btn-whatsapp-nav:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-1px);
}

/* ============================================================
   4. HERO SECTION
============================================================ */
.hero-section {
  position: relative;
  background-color: var(--bg-light);
  padding-top: 120px;
  padding-bottom: 80px;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.min-vh-hero {
  min-height: calc(100svh - 120px);
}

/* Blobs decorativos de fundo */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
.hero-blob-1 {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, #4FA7E3, #D6EEFA);
  top: -160px;
  right: -120px;
}
.hero-blob-2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, #2C7BC0, #4FA7E3);
  bottom: -80px;
  left: -100px;
}

/* Pata de fundo decorativa (SVG inline emulado via CSS) */
.hero-paw-bg {
  position: absolute;
  right: 4%;
  bottom: 6%;
  width: 300px;
  height: 300px;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='30' cy='20' r='12' fill='%23123B73'/%3E%3Ccircle cx='70' cy='20' r='12' fill='%23123B73'/%3E%3Ccircle cx='15' cy='45' r='9' fill='%23123B73'/%3E%3Ccircle cx='85' cy='45' r='9' fill='%23123B73'/%3E%3Cellipse cx='50' cy='75' rx='30' ry='22' fill='%23123B73'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  animation: heroFadeUp 0.8s ease both;
}

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

/* Badge de localização */
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: var(--blue-light);
  color: var(--blue-secondary);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid rgba(79, 167, 227, 0.3);
  animation: heroFadeUp 0.8s 0.1s ease both;
}

/* Hero title */
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1.2;
  margin-bottom: 1.2rem;
  animation: heroFadeUp 0.8s 0.2s ease both;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-body);
  max-width: 480px;
  line-height: 1.75;
  animation: heroFadeUp 0.8s 0.3s ease both;
}

.hero-ctas {
  animation: heroFadeUp 0.8s 0.4s ease both;
}

/* Trust signals */
.hero-trust {
  animation: heroFadeUp 0.8s 0.5s ease both;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}
.trust-item i {
  color: var(--blue-primary);
  font-size: 0.9rem;
}

/* Hero image wrapper */
.hero-image-col {
  position: relative;
  z-index: 2;
  animation: heroFadeUp 0.8s 0.35s ease both;
}

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

/* Placeholder para a foto */
.hero-img-placeholder {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3 / 4;
  background: linear-gradient(145deg, var(--blue-light), #c8e6f8);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--blue-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  border: 3px dashed rgba(79, 167, 227, 0.4);
  box-shadow: var(--shadow-medium);
}
.hero-img-placeholder i {
  font-size: 5rem;
  color: var(--blue-primary);
  opacity: 0.6;
}
/* Classe para quando a foto real for inserida */
.hero-img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
}

/* Cards flutuantes decorativos */
.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-medium);
  font-size: 0.82rem;
  font-weight: 500;
}
.hero-float-card div {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.hero-float-card i {
  font-size: 1.5rem;
}
.hero-float-card small {
  color: var(--text-muted);
  font-size: 0.74rem;
}
.hero-float-card-1 {
  bottom: 20%;
  left: -5%;
  animation: floatA 4s ease-in-out infinite;
}
.hero-float-card-2 {
  bottom: 20%;
  right: -4%;
  animation: floatB 5s ease-in-out infinite;
}

@keyframes floatA {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* ============================================================
   5. BENEFÍCIOS
============================================================ */
.beneficios-section {
  background: var(--white);
  position: relative;
}

.benefit-card {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  height: 100%;
  border: 1px solid rgba(79, 167, 227, 0.12);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.benefit-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow var(--transition), border-color var(--transition);
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
  border-color: var(--blue-primary);
}

.benefit-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, color-mix(in srgb, var(--icon-color) 15%, white), color-mix(in srgb, var(--icon-color) 8%, white));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
  color: var(--icon-color);
  border: 1px solid color-mix(in srgb, var(--icon-color) 20%, transparent);
}

.benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 10px;
}
.benefit-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Card CTA especial */
.benefit-cta-card {
  background: linear-gradient(145deg, var(--blue-secondary), var(--blue-dark));
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.benefit-cta-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(18, 59, 115, 0.3);
  border-color: transparent;
}

/* ============================================================
   6. SERVIÇOS
============================================================ */
.servicos-section {
  background: var(--bg-light);
  position: relative;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(79, 167, 227, 0.1);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.service-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
  border-color: var(--blue-primary);
}

.service-icon {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-secondary));
  padding: 28px 28px 20px;
  font-size: 2.2rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.service-icon::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 40px;
  background: var(--white);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.service-body {
  padding: 24px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 10px;
}
.service-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue-secondary);
  transition: gap var(--transition), color var(--transition);
}
.service-link:hover {
  color: var(--blue-primary);
  gap: 6px;
}

/* ============================================================
   7. SOBRE
============================================================ */
.sobre-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.sobre-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, var(--bg-light), transparent);
  pointer-events: none;
}

/* Wrapper da imagem */
.sobre-img-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

/* Placeholder da foto */
.sobre-img-placeholder {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3 / 4;
  background: linear-gradient(145deg, var(--blue-light), #c8e6f8);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--blue-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  border: 3px dashed rgba(79, 167, 227, 0.4);
  box-shadow: var(--shadow-medium);
  margin: 0 auto;
}
.sobre-img-placeholder i {
  font-size: 5rem;
  color: var(--blue-primary);
  opacity: 0.6;
}
/* Classe para quando a foto real for inserida */
.sobre-img {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  margin: 0 auto;
}

/* Badge card da seção sobre */
.sobre-badge-card {
  position: absolute;
  bottom: -20px;
  right: 10%;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(79, 167, 227, 0.15);
}
.sobre-badge-card i {
  font-size: 1.8rem;
  color: var(--blue-primary);
}
.sobre-badge-card div {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.sobre-badge-card strong {
  font-size: 0.85rem;
  color: var(--blue-dark);
}
.sobre-badge-card small {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Texto sobre */
.sobre-text {
  font-size: 0.98rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Selos */
.sobre-seals {
  margin-top: 8px;
}
.seal-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-light);
  border: 1px solid rgba(79, 167, 227, 0.2);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--blue-dark);
}
.seal-item i {
  color: var(--blue-primary);
}

/* ============================================================
   8. DEPOIMENTOS
============================================================ */
.depoimentos-section {
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.depo-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 167, 227, 0.12), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.depo-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  height: 100%;
  border: 1px solid rgba(79, 167, 227, 0.12);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.depo-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow var(--transition);
}
.depo-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

/* Card em destaque (central) */
.depo-card-featured {
  background: linear-gradient(145deg, var(--blue-dark), var(--blue-secondary));
  border-color: transparent;
}
.depo-card-featured .depo-stars i {
  color: #FFD166;
}
.depo-card-featured .depo-text {
  color: rgba(255, 255, 255, 0.92);
}
.depo-card-featured .depo-author strong {
  color: #fff;
}
.depo-card-featured .depo-author small {
  color: rgba(255,255,255,0.65);
}
.depo-card-featured .depo-avatar {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.depo-stars i {
  color: #F59E0B;
  font-size: 0.85rem;
}

.depo-text {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

.depo-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.depo-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--blue-primary);
  flex-shrink: 0;
}
.depo-author div {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}
.depo-author strong {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue-dark);
}
.depo-author small {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* ============================================================
   9. FAQ
============================================================ */
.faq-section {
  background: var(--white);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(79, 167, 227, 0.18) !important;
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--white);
}

.faq-btn {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--blue-dark) !important;
  background: var(--white) !important;
  padding: 20px 24px;
  border: none;
  box-shadow: none !important;
}
.faq-btn:not(.collapsed) {
  background: var(--bg-light) !important;
  color: var(--blue-secondary) !important;
  border-bottom: 1px solid rgba(79, 167, 227, 0.1);
}
.faq-btn::after {
  filter: invert(42%) sepia(78%) saturate(424%) hue-rotate(178deg) brightness(90%) contrast(86%);
}

.faq-body {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.75;
  padding: 16px 24px 24px;
  background: var(--bg-light);
}

/* ============================================================
   10. CTA FINAL
============================================================ */
.cta-final-section {
  position: relative;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-secondary) 100%);
  padding: 100px 0;
  overflow: hidden;
  text-align: center;
}

.cta-final-bg {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Ccircle cx='18' cy='12' r='7' fill='rgba(255,255,255,0.03)'/%3E%3Ccircle cx='42' cy='12' r='7' fill='rgba(255,255,255,0.03)'/%3E%3Ccircle cx='9' cy='27' r='5' fill='rgba(255,255,255,0.03)'/%3E%3Ccircle cx='51' cy='27' r='5' fill='rgba(255,255,255,0.03)'/%3E%3Cellipse cx='30' cy='45' rx='18' ry='13' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E");
  background-size: 120px;
  pointer-events: none;
}

.cta-paw-icon {
  font-size: 2.5rem;
  color: rgba(255,255,255,0.2);
  margin-bottom: 24px;
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1);    opacity: 0.2; }
  50%       { transform: scale(1.15); opacity: 0.35; }
}

.cta-final-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}
.cta-final-title span {
  color: var(--blue-light);
}

.cta-final-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

.btn-whatsapp-cta-final {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--whatsapp);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 100px;
  border: none;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-whatsapp-cta-final:hover {
  background: var(--whatsapp-dark);
  color: #fff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.5);
}

.cta-final-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   11. RODAPÉ
============================================================ */
.site-footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  margin-bottom: 16px;
}
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
.footer-logo-sub {
  font-size: 0.68rem;
  color: var(--blue-primary);
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 280px;
}

/* Social links */
.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.footer-social-link:hover {
  background: var(--blue-primary);
  color: #fff;
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-links a:hover {
  color: var(--blue-primary);
  padding-left: 4px;
}

/* Contact list */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}
.footer-contact-list i {
  color: var(--blue-primary);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-list a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-contact-list a:hover {
  color: var(--blue-primary);
}

/* Footer bottom */
.footer-bottom {
  margin-top: 48px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   12. WHATSAPP FLUTUANTE
============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #fff;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: floatBubble 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.65);
  color: #fff;
}

/* Tooltip do botão flutuante */
.whatsapp-float-tooltip {
  position: absolute;
  right: 74px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--blue-dark);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 14px;
  border-radius: 100px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.whatsapp-float-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--blue-dark);
}
.whatsapp-float:hover .whatsapp-float-tooltip {
  opacity: 1;
}

@keyframes floatBubble {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ============================================================
   13. RESPONSIVIDADE
============================================================ */

/* Tablet */
@media (max-width: 991.98px) {
  .section-padding { padding: 72px 0; }

  .hero-section {
    padding-top: 100px;
    padding-bottom: 60px;
    min-height: auto;
  }
  .min-vh-hero { min-height: auto; }

  .hero-image-wrapper { max-width: 340px; margin: 0 auto; }

  .hero-float-card-1,
  .hero-float-card-2 { display: none; }

  .sobre-badge-card {
    position: static;
    margin: 16px auto 0;
    width: fit-content;
  }
}

/* Mobile */
@media (max-width: 575.98px) {
  .section-padding { padding: 60px 0; }

  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 0.95rem; }

  .hero-ctas {
    flex-direction: column;
  }
  .hero-ctas .btn-whatsapp-main,
  .hero-ctas .btn-outline-primary-custom {
    width: 100%;
  }

  .section-title { font-size: 1.75rem; }

  .cta-final-section { padding: 72px 0; }
  .btn-whatsapp-cta-final {
    font-size: 1rem;
    padding: 16px 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 16px;
    width: 54px;
    height: 54px;
    font-size: 1.5rem;
  }
}

/* ============================================================
   14. ACESSIBILIDADE & PREFERÊNCIAS DE MOVIMENTO
============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus visible */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--blue-primary);
  outline-offset: 3px;
  border-radius: 4px;
}