/* Smart Drift — layout limpo em fundo sólido */

/* Variáveis de cor */
:root {
  --bg-page: #f3f4f6;
  --surface: #ffffff;
  --surface-soft: #edf1f5;
  --surface-contrast: #4b5563;
  --border-soft: #d1d5db;
  --text-main: #111827;
  --text-muted: #6b7280;
  --accent: #e11d2f;
  --accent-hover: #b91c1c;
}

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

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Urbanist", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
}

/* Burger menu */
.burger {
  margin-left: auto;
  width: 36px;
  height: 28px;
  border: none;
  background: transparent;
  display: none;              /* só aparece no mobile */
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background-color: var(--text-main);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  background-color: var(--surface);
  border-top: 1px solid var(--border-soft);
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem 0 1rem;
}

.mobile-nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 0.35rem 0;
}


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

main {
  display: block;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* Tipografia geral */
h1,
h2,
h3 {
  margin: 0 0 0.5rem;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.4rem, 3vw + 1.4rem, 3.4rem);
}

h2 {
  font-size: clamp(1.7rem, 2vw + 0.8rem, 2.1rem);
}

h3 {
  font-size: 1.1rem;
}

.section-title {
  margin-bottom: 1.5rem;
}

/* Header */
.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-muted);
  padding: 0.3rem 0.4rem;
  border-radius: 999px;
  transition: color 0.15s ease, background-color 0.15s ease;
}

.main-nav a:hover {
  color: var(--text-main);
  background-color: #e5e7eb;
}

.main-nav .nav-whatsapp {
  background-color: var(--accent);
  color: #fff;
  padding-inline: 0.9rem;
}

.main-nav .nav-whatsapp:hover {
  background-color: var(--accent-hover);
  color: #fff;
}

@media (max-width: 780px) {
  .header-inner {
    gap: 0.75rem;
  }

  .burger {
    display: inline-flex;
  }

  .main-nav {
    display: none;
  }

  .mobile-nav.open {
    display: block;
  }
}

.site-header {
  background-color: var(--surface);
  border-bottom: 1px solid var(--border-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-block: 0.75rem;
}

.logo-text {
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 320px;
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("assets/kart.jpg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.6);
}

.hero-content {
  position: relative;
  padding-block: clamp(3rem, 6vw, 5rem);
}

.hero-subtitle {
  font-size: 1.2rem;
  max-width: 26rem;
}

.hero-tagline {
  margin-top: 1rem;
  max-width: 34rem;
}

/* Seções base */
.section {
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
}

.section-light {
  background-color: var(--surface);
}

.section-soft {
  background-color: var(--surface-soft);
}

.section-white {
  background-color: var(--surface);
}

.section-contrast {
  background-color: var(--surface-contrast);
  color: #f9fafb;
}

/* Grids utilitários */
.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.align-center {
  align-items: center;
}

/* Blocos de texto */
.text-block {
  font-size: 0.98rem;
}

.bullet-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.bullet-list li + li {
  margin-top: 0.35rem;
}

/* Benefícios iniciais */
.benefits-media {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.photo-card {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background-color: #000;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.callout-row {
  margin-top: 1.75rem;
  padding: 1.25rem 1.25rem;
  border-radius: 12px;
  background-color: #e5e7eb;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.97rem;
}

.callout-row p {
  margin: 0;
  max-width: 44rem;
}

.callout-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
  min-width: 180px;
  text-align: right;
}

.callout-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Cards / features */
.cards .card {
  background-color: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.card-icon,
.feature-icon {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.card-icon img,
.feature-icon img {
  width: 48px;
  height: 48px;
}


.icon-red {
  /* Ajuste este filtro ou troque a cor direto no SVG se preferir */
  filter: invert(34%) sepia(96%) saturate(7490%) hue-rotate(355deg) brightness(96%) contrast(108%);
}


.card-media {
  border-radius: 10px;
  overflow: hidden;
  margin: 0;
}

.card-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Experiência */
.section-white .section-title {
  margin-bottom: 1.25rem;
}

.highlight {
  font-size: 1rem;
  font-weight: 600;
  margin: 0.2rem 0;
}

.family-media {
  display: flex;
  justify-content: center;   /* centraliza o bloco das fotos */
}

.family-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.family-photo {
  border-radius: 12px;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--border-soft);
}

.family-photo img {
  height: 190px;
  object-fit: cover;
}

/* Características técnicas */
.features .feature {
  background-color: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  padding: 1rem;
  font-size: 0.95rem;
}

.features .feature p {
  margin: 0.3rem 0 0;
  color: var(--text-muted);
}

/* Comparativo */
.section-title-contrast {
  color: #f9fafb;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.compare-column h3 {
  margin-bottom: 0.6rem;
}

.compare-column ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.95rem;
}

.compare-column li + li {
  margin-top: 0.25rem;
}

.compare-cta {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.btn.primary {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn.primary:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
}

/* Footer */
.site-footer {
  background-color: var(--surface);
  border-top: 1px solid var(--border-soft);
}

.footer-inner {
  padding-block: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.footer-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Responsivo */
@media (max-width: 960px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

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

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

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

  .callout-row {
    align-items: flex-start;
  }

  .callout-cta {
    align-items: flex-start;
    text-align: left;
  }

  .compare-cta {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 260px;
  }

  .hero-content {
    padding-block: 2.5rem;
  }

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

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

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

  .family-photo img {
    height: auto;
  }

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

/* Seção de evento */
.section-event {
  background-color: #0b1120;
  color: #e5e7eb;
}

.section-event .section-title {
  color: #f9fafb;
}

.section-event .section-lead {
  max-width: 44rem;
  margin: 0.5rem 0 1.75rem;
  color: #e5e7eb;
}

.event-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 1.75rem;
}

.event-card-media,
.event-card-detail {
  border-radius: 18px;
}

.event-card-media {
  background: radial-gradient(circle at top, #1f2937 0, #020617 70%);
  padding: 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.event-frame {
  border-radius: 16px;
  overflow: hidden;
  margin: 0;
  background-color: #020617;
}

.event-frame img {
  width: 100%;
  display: block;
}

.event-card-detail {
  background-color: #020617;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.event-card-detail h3 {
  margin: 0;
}

.event-info {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.95rem;
}

.event-info li + li {
  margin-top: 0.3rem;
}

.event-note {
  font-size: 0.8rem;
  color: #9ca3af;
}

.event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

/* Ghost button */
.btn.ghost {
  background-color: #0000007b;
  border-color: var(--border-soft);
  color: var(--bg-page);
}

.section-event .btn.ghost {
  border-color: var(--accent);
  color: #e5e7eb;
}

.btn.ghost:hover {
  background-color: #e5e7eb;
  color: var(--text-main);
}

.section-event .btn.ghost:hover {
  background-color: #111827;
  color: #f9fafb;
}

/* Hero CTA */
.hero-cta {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Footer WhatsApp */
.footer-whatsapp {
  margin-left: auto;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--accent);
  font-weight: 600;
}

.footer-whatsapp:hover {
  text-decoration: underline;
}
/* Botão flutuante de WhatsApp */


/* Ícone interno */




/* Hover suave */


/* Remove possíveis sombras herdadas ou pseudoelementos */


@media (max-width: 640px) {
  .event-grid {
    grid-template-columns: 1fr;
  }

  

  
}


.hero-content {
  position: relative;
  padding-block: clamp(3rem, 6vw, 5rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.hero-main {
  max-width: 32rem;
}

.hero-side {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background-color: rgba(15, 23, 42, 0.9);
}

.hero-side img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-side {
    max-width: 360px;
    margin-inline: auto;
  }
}



/* Alinhamento uniforme dos cards da seção COMO COMEÇAR */
.cards .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

/* Fotos maiores na seção de experiência */
.family-photo img {
  height: 260px;
  object-fit: cover;
}

/* Ajuste do rodapé */
.site-footer {
  background-color: #ffffff;
  padding-block: 2rem;
  border-top: 1px solid #d1d5db;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: center;
}

.footer-whatsapp {
  margin-top: 0.8rem;
  font-size: 1rem;
}

/* Ajuste botão flutuante WhatsApp */



/* Botão flutuante de WhatsApp usando Font Awesome */
.whatsapp-floating {
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.whatsapp-floating i {
  font-size: 26px;
  line-height: 1;
}

.whatsapp-floating:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 16px rgba(0,0,0,0.22);
  background: #1ebe5d;
}

