/* ==========================================================================
   AF SILK CAMISETAS — landing page styles
   Reprodução fiel do layout original (landing-afsilk.pdf)
   ========================================================================== */

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

:root {
  --cream: #f4efe4;
  --cream-soft: #fbf7f1;
  --white: #ffffff;
  --navy-heading: #172a4d;
  --navy-dark: #0a0f2e;
  --navy-mid: #0a3d62;
  --text-body: #4a5165;
  --text-muted: #6b7280;
  --border-light: #e3ddcf;
  --border-pill: #a9b2c3;
  --gray-row: #a7a29f;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--text-body);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, .font-display {
  font-family: 'Baloo 2', sans-serif;
  color: var(--navy-heading);
  margin: 0;
  line-height: 1.15;
}

p {
  margin: 0;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

/* Única definição de .wrap — controla só a largura/margem lateral,
   nunca o espaçamento vertical das seções (isso fica com cada seção). */
.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------------------------------------------------------------------- */
/* Header / navigation                                                     */
/* ---------------------------------------------------------------------- */

.site-header {
  background: transparent;
  border-bottom: 1px solid transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 12px rgba(10, 15, 46, 0.08);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.logo {
  height: 100px;
  width: auto;
  filter: drop-shadow(0 1px 5px rgba(0, 0, 0, 0.55));
  transition: filter 0.3s ease;
}

.site-header.scrolled .logo {
  filter: none;
}

.main-nav {
  display: flex;
  gap: 40px;
}

.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.site-header.scrolled .main-nav a {
  color: var(--navy-heading);
  text-shadow: none;
}

.main-nav a:hover {
  opacity: 0.7;
}

.btn-quote {
  background: var(--cream);
  border: 1px solid var(--border-light);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
  color: var(--navy-heading);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled .btn-quote {
  box-shadow: none;
}

.btn-quote:hover {
  background: var(--border-light);
}

section[id] {
  scroll-margin-top: 90px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-dark); /* cor de fundo enquanto o vídeo carrega */
  padding: 170px 0 80px; /* espaço extra no topo para não ficar atrás do cabeçalho flutuante */
  min-height: 580px; /* garante altura mínima para o vídeo ter o que cobrir */
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;             /* preenche a altura real da seção, não um valor fixo */
  object-fit: cover;        /* cobre sem distorcer */
  object-position: center 30%; /* ajuste este valor (0% a 100%) para escolher qual parte do vídeo vertical fica visível */
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,15,46,0.75) 0%, rgba(10,15,46,0.55) 42%, rgba(10,15,46,0.15) 68%, rgba(10,15,46,0) 85%);
  z-index: 1;
}

.hero .wrap {
  position: relative;
  z-index: 2;             /* conteúdo por cima do vídeo */
  display: block;
}

.hero-copy {
  max-width: 640px;
}

.hero .wrap > * {
  min-width: 0;
}



.hero-copy h1 {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--white);
}

.divider-dots {
  border: none;
  border-top: 3px dotted rgba(255, 255, 255, 0.55);
  width: 90px;
  margin: 26px 0 34px;
  opacity: 1;
}

.hero-lead {
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.92);
  max-width: 460px;
}

.pill-tag {
  display: inline-block;
  background: var(--navy-dark);
  color: var(--white);
  font-family: 'Baloo 2', sans-serif;
  font-weight: 600;
  font-size: 17px;
  padding: 12px 26px;
  border-radius: 0px;
  margin: 0px 0 0px;
}

.hero-sub {
  font-size: 16.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  max-width: 440px;
  margin-bottom: 44px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
}

.btn {
  font-size: 14.5px;
  font-weight: 600;
  padding: 15px 26px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  display: inline-block;
}

.btn-dark {
  background:var(--navy-heading) ;
  color: var(--white);
}

.btn-dark:hover {
  background: var(--navy-heading);
}

.btn-outline {
  background: var(--white);
  color: var(--navy-heading);
  border-color: var(--border-pill);
}

.btn-outline:hover {
  background: var(--cream-soft);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.badge {
  font-size: 13.5px;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  white-space: normal;
}

.badge-dark {
  background: var(--navy-heading);
  color: var(--white);
}

.badge-light {
  background: var(--white);
  color: var(--navy-heading);
  border: 1px solid var(--border-pill);
}

/* ---------------------------------------------------------------------- */
/* Why AF SILK section                                                     */
/* ---------------------------------------------------------------------- */

.why {
  background: var(--cream-soft);
  padding: 56px 0 32px;
}

.eyebrow {
  font-size: 30px;
  font-weight: 600;
  color: var(--navy-heading);
  margin-bottom: 6px;
}

.why h2 {
  font-size: 50px;
  font-weight: 700;
  max-width: 640px;
  margin-bottom: 36px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px 26px;
}

.card h3 {
  font-size: 16.5px;
  font-weight: 600;
  margin-bottom: 12px;
}

.card p {
  font-size: 14.5px;
  color: var(--text-muted);
}

/* ---------------------------------------------------------------------- */
/* How it works — dark section                                            */
/* ---------------------------------------------------------------------- */

.how {
  background: var(--navy-dark);
  padding: 48px 0 68px;
  margin: 0;
}

.how .eyebrow {
  color: #7fa7d6;
}

.how h2 {
  color: var(--white);
  font-size: 30px;
  font-weight: 700;
  max-width: 520px;
  margin-bottom: 48px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.step-num {
  font-family: 'Baloo 2', sans-serif;
  color: #7fa7d6;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}

.step h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  margin: 0 0 10px;
}

.step p {
  color: #c3c8d6;
  font-size: 13.5px;
  margin-bottom: 16px;
}

.step-rule {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  width: 70%;
}

/* ---------------------------------------------------------------------- */
/* What we do — products                                                   */
/* ---------------------------------------------------------------------- */

.products {
  background-color: var(--cream);
  background-image:
    linear-gradient(135deg, rgba(255,255,255,0.5) 25%, transparent 25%),
    linear-gradient(225deg, rgba(255,255,255,0.5) 25%, transparent 25%),
    linear-gradient(45deg, rgba(255,255,255,0.5) 25%, transparent 25%),
    linear-gradient(315deg, rgba(255,255,255,0.5) 25%, #efe8d9 25%);
  background-position: 60px 0, 60px 0, 0 0, 0 0;
  background-size: 120px 120px;
  background-repeat: repeat;
  padding: 64px 0 90px;
}

.tag-pill {
  display: inline-block;
  background: var(--navy-heading);
  color: var(--white);
  font-family: 'Baloo 2', sans-serif;
  font-weight: 600;
  font-size: 25px;
  padding: 8px 18px;
  border-radius: 0 px;
  margin-bottom: 20px;
}

.products h2 {
  font-size: 35px;
  font-weight: 700;
  max-width: none;
  margin-bottom: 44px;
}

.product-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.product-card {
  flex: 1;
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: center;
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  padding: 16px;
  background: var(--white);
}

.polo-img {
  height: 280px; /* maior que as outras (220px) — ajuste este número à vontade */
}

.product-label {
  display: block;
  padding: 14px 12px 20px;
  font-weight: 700;
  color: var(--navy-heading);
  font-size: 15px;
  border-top: 1px solid var(--border-light);
}

/* ---------------------------------------------------------------------- */
/* Clientes que já confiam                                                 */
/* ---------------------------------------------------------------------- */

.clients {
  background: var(--white);
  padding: 56px 0;
}

.clients .eyebrow {
  font-size: 22px;
}

.clients h2 {
  font-size: 27px;
  max-width: 560px;
  margin-bottom: 40px;
}

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 32px 44px;
}

.clients-grid img {
  max-height: 200px;
  max-width: 320px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ---------------------------------------------------------------------- */
/* Perguntas Frequentes                                                     */
/* ---------------------------------------------------------------------- */

.faq {
  background: var(--cream-soft);
  padding: 64px 0 72px;
}

.faq .eyebrow {
  font-size: 22px;
  background: var(--navy-dark);
  color: var(--white);
  padding: 10px 20px;
  display: inline-block;
  margin-bottom: 20px; /* distância entre eyebrow e h2 */
}



.faq h2 {
  font-size: 27px;
  max-width: 560px;
  margin-bottom: 36px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px 24px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--navy-heading);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--navy-mid);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details[open] summary {
  margin-bottom: 12px;
}

.faq-list details p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------------------------------------------------------------------- */
/* CTA / contact — page 2                                                  */
/* ---------------------------------------------------------------------- */

.cta-section {
  background: var(--navy-mid);
  padding: 60px 0 90px;
}

.cta-section .wrap.two-columns {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.cta-text {
  flex: 1;
}

.cta-text h2 {
  color: var(--white);
}

.cta-frase {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.4;
  margin-top: 12px;
}
.cta-text .cta-logo {
  width: 140px;
  margin: 26px auto 0;
  display: block;
}


.cta-box {
  flex: 1;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.cta-box h3 {
  margin-bottom: 15px;
  color: var(--navy-heading);
}

.cta-box table {
  width: 100%;
  margin-bottom: 15px;
  border-collapse: collapse;
}

.cta-box td {
  padding: 10px 4px;
  font-size: 14px;
  border-bottom: 1px solid var(--border-light);
}

.cta-box tr:last-child td {
  border-bottom: none;
}

.cta-box .label {
  font-weight: bold;
  padding-right: 10px;
  color: var(--navy-heading);
}

.cta-box .value {
  color: #33363d;
}

/* ---------------------------------------------------------------------- */
/* Buttons (shared)                                                         */
/* ---------------------------------------------------------------------- */

.btn-dark {
  background: var(--navy-heading);
  color: #fff;
}

/* ---------------------------------------------------------------------- */
/* Footer                                                                   */
/* ---------------------------------------------------------------------- */

.footer {
  background: #004080;
  color: #fff;
  text-align: center;
  padding: 15px;
}

/* ---------------------------------------------------------------------- */
/* Floating WhatsApp button                                                */
/* ---------------------------------------------------------------------- */

.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  background: #1fae5a;
  color: var(--white);
  font-weight: 600;
  font-size: 14.5px;
  padding: 15px 22px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(10, 15, 46, 0.25);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 60;
}

.whatsapp-float svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ---------------------------------------------------------------------- */
/* Responsive                                                              */
/* ---------------------------------------------------------------------- */

@media (max-width: 980px) {
  .hero .wrap,
  .cta-section .wrap.two-columns {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

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

  .main-nav {
    display: none;
  }

  .clients-grid {
    gap: 24px 28px;
    justify-content: center;
  }

  .clients-grid img {
    max-height: 60px;
    max-width: 150px;
  }

  .hero {
    min-height: 640px; /* no celular o conteúdo empilhado precisa de mais altura */
  }
}

.destaque {
  display: block;
  margin: 20px 0;
}
.destaque1 {
  display: block;
  margin: 15px 0;
}
