/* ============================================================
   CORREIA SUPLEMENTOS - style.css
   Design feminino, mobile-first, responsivo
   ============================================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
  /* Proteção contra seleção de texto */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  pointer-events: none; /* impede arrastar imagens */
}

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

ul {
  list-style: none;
}

/* ---- VARIÁVEIS DE COR ---- */
:root {
  --pink: #e91e8c;
  --pink-light: #fce4f3;
  --pink-dark: #c0156f;
  --rose: #f8b4d9;
  --green-wa: #25d366;
  --green-wa-dark: #1da851;
  --white: #ffffff;
  --gray-light: #f9f0f5;
  --gray: #888;
  --dark: #1a1a2e;
  --text: #444;
  --shadow: 0 4px 24px rgba(233,30,140,0.10);
  --radius: 16px;
  --radius-sm: 8px;
}

/* ---- CONTAINER ---- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--pink-light);
  box-shadow: 0 2px 16px rgba(233,30,140,0.08);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  color: var(--dark);
}

.logo-icon {
  font-size: 1.5rem;
}

.logo-text {
  font-weight: 500;
  color: var(--dark);
}

.logo-text strong {
  color: var(--pink);
}

/* ============================================================
   BOTÕES WHATSAPP
   ============================================================ */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-wa);
  color: #fff !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-whatsapp:hover {
  background: var(--green-wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

.btn-whatsapp:active {
  transform: translateY(0);
}

/* Tamanhos */
.btn-sm  { padding: 8px 16px; font-size: 0.82rem; }
.btn-md  { padding: 12px 22px; font-size: 0.92rem; }
.btn-lg  { padding: 15px 28px; font-size: 1rem; }
.btn-xl  { padding: 18px 34px; font-size: 1.05rem; }

/* Botão outline */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid #fff;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

/* Ícone WhatsApp SVG */
.wa-icon {
  width: 20px;
  height: 20px;
  fill: #fff;
  flex-shrink: 0;
}

/* Animação pulse */
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.pulse {
  animation: pulse 2s infinite;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,26,46,0.82) 0%,
    rgba(233,30,140,0.55) 60%,
    rgba(26,26,46,0.70) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 24px 80px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: clamp(2rem, 8vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 10px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-title .highlight {
  color: var(--rose);
  display: block;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 5vw, 1.6rem);
  font-weight: 700;
  color: var(--rose);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

/* ============================================================
   DIFERENCIAIS STRIP
   ============================================================ */
.diferenciais-strip {
  background: linear-gradient(90deg, var(--pink) 0%, var(--pink-dark) 100%);
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
}

.strip-icon {
  font-size: 1.1rem;
}

/* ============================================================
   SEÇÃO SOBRE / ATENDENTES
   ============================================================ */
.sobre {
  padding: 70px 0;
  background: var(--gray-light);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-badge {
  display: inline-block;
  background: var(--pink-light);
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 12px;
}

.section-title .pink {
  color: var(--pink);
}

.section-desc {
  font-size: 0.95rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.atendentes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.atendente-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.atendente-img-wrap {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

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

.atendente-card:hover .atendente-img-wrap img {
  transform: scale(1.04);
}

.atendente-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.atendente-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
}

.atendente-info p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ============================================================
   CTA CENTRAL
   ============================================================ */
.cta-central {
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%);
}

.cta-box {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: clamp(1.4rem, 5vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.cta-box p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ============================================================
   BENEFÍCIOS
   ============================================================ */
.beneficios {
  padding: 70px 0;
  background: #fff;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.beneficio-card {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  border: 1px solid var(--pink-light);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.beneficio-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.beneficio-card h3 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.beneficio-card p {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ============================================================
   SEÇÃO WHATSAPP
   ============================================================ */
.whatsapp-section {
  padding: 70px 0;
  background: var(--gray-light);
}

.wa-content {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
}

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

.wa-text h2 {
  font-size: clamp(1.4rem, 5vw, 2rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
}

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

.wa-list {
  list-style: none;
  margin-bottom: 28px;
  display: inline-block;
  text-align: left;
}

.wa-list li {
  font-size: 0.9rem;
  color: var(--text);
  padding: 5px 0;
  font-weight: 500;
}

.wa-btns {
  display: flex;
  justify-content: center;
}

.wa-img-wrap {
  width: 100%;
  max-width: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.wa-img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center top;
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.depoimentos {
  padding: 70px 0;
  background: #fff;
}

.depo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.depo-card {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 28px 24px;
  border-left: 4px solid var(--pink);
  box-shadow: var(--shadow);
}

.depo-stars {
  color: #f5a623;
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.depo-card p {
  font-size: 0.92rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 12px;
}

.depo-nome {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--pink);
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  padding: 70px 20px;
  background: linear-gradient(135deg, var(--dark) 0%, #2d1b4e 100%);
  text-align: center;
}

.cta-final h2 {
  font-size: clamp(1.5rem, 6vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.cta-final p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-final-btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

/* ============================================================
   RODAPÉ
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
}

.footer-top {
  padding: 48px 20px 32px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer-top .logo-text {
  color: #fff;
}

.footer-slogan {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

/* Toggle Rodapé */
.footer-legal {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-toggle {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: none;
  color: rgba(255,255,255,0.85);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 16px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s;
  letter-spacing: 0.3px;
}

.footer-toggle:hover {
  background: rgba(255,255,255,0.10);
}

.toggle-arrow {
  width: 20px;
  height: 20px;
  stroke: rgba(255,255,255,0.7);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.toggle-arrow.open {
  transform: rotate(180deg);
}

/* Conteúdo expansível */
.footer-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.footer-content.open {
  max-height: 3000px;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 32px 24px;
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--rose);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.footer-col ul li {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.footer-col ul li a {
  color: var(--rose);
  text-decoration: underline;
}

.footer-text p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 10px;
}

.footer-text a {
  color: var(--rose);
  text-decoration: underline;
}

/* Rodapé inferior */
.footer-bottom {
  padding: 20px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom a {
  color: rgba(255,255,255,0.55);
  text-decoration: underline;
}

/* ============================================================
   BOTÃO FLUTUANTE WHATSAPP
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: var(--green-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulse 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,0.65);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
}

.float-tooltip {
  position: absolute;
  right: 70px;
  background: var(--dark);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.float-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--dark);
  border-right: none;
}

.whatsapp-float:hover .float-tooltip {
  opacity: 1;
}

/* ============================================================
   RESPONSIVO — TABLET E DESKTOP
   ============================================================ */
@media (min-width: 600px) {
  .hero-btns {
    flex-direction: row;
    justify-content: center;
  }

  .cta-final-btns {
    flex-direction: row;
    justify-content: center;
  }

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

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

  .beneficios-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .wa-content {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }

  .wa-text {
    text-align: left;
    flex: 1;
  }

  .wa-btns {
    justify-content: flex-start;
  }

  .wa-img-wrap {
    flex-shrink: 0;
  }

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

  .depo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .beneficios-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1100px) {
  .footer-cols {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================================
   PROTEÇÃO ANTI-CÓPIA (complemento ao JS)
   ============================================================ */
::selection {
  background: transparent;
}

::-moz-selection {
  background: transparent;
}
