:root {
  --bg: #000000;
  --text: #000000;
  --text-muted: #6b7280;
  --gray-soft: #f5f5f5;
  --border: #e5e7eb;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.06);
  --radius-lg: 18px;
  --radius-md: 12px;
  --transition-fast: 0.2s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Aileron", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

/* Layout base */
.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

main {
  padding-top: 90px;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(0, 0, 0, 0.795);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-inner {
  max-width: 1120px;
  margin-inline: auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.nav-logo img {
  height: 60px;
  width: auto;
  display: block;
}

/* Botões */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast);
}

.btn-primary {
  background: #000000;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.45);
}

.btn-secondary {
  background: transparent;
  border-color: #d1d5db;
  color: #111827;
}

.btn-secondary:hover {
  background: #000000;
  color: #ffffff;
  border-color: #111827;
}

.btn-full {
  width: 100%;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #ffffff;
  background-color: #000000;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("Dra érika ristow estetica corporal e facial na barra da tijuca rj - fundo hero 10.png");
  background-size: cover;
  background-position: center;
  opacity: 0.9;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 520px;
  padding: 40px 16px 48px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  margin-bottom: 16px;
}

.hero p {
  margin: 0 0 10px;
  line-height: 1.6;
  color: #e5e7eb;
}

.hero-sub {
  margin-top: 8px;
}

.hero-btn {
  margin-top: 22px;
  height: 58px;
  width: 464px;
}

/* Seções genéricas */
.section {
  padding: 72px 0;
  background: #000000;
  color: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.section-header p {
  color: #d1d5db;
  max-width: 580px;
  margin: 0 auto;
}

.section-cta {
  margin-top: 32px;
  text-align: center;
}

.section-gray {
  background: #000000;
  color: #ffffff;
}

/* Split section */
.section-split .split-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.split-text {
  flex: 1 1 300px;
}

.split-text p {
  color: #d1d5db;
  line-height: 1.6;
}

.split-text p + p {
  margin-top: 8px;
}

.split-image {
  flex: 1 1 260px;
  display: flex;
  justify-content: center;
}

.split-image img {
  max-width: 320px;
  width: 100%;
  object-fit: contain;
}

/* PROCEDIMENTOS - Layout com checks em linha */
.procedimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.procedimentos-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.procedimento-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-fast);
}

.procedimento-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.procedimento-check {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #000000, #333333);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-top: 4px;
}

.procedimento-content h3 {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  color: #ffffff;
}

.procedimento-content p {
  margin: 0;
  color: #d1d5db;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* CARROSSEL CORRIGIDO */
.carousel {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  background: #000;
}

.carousel-track {
  position: relative;
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 400px;
}

.carousel-item {
  flex: 0 0 100%;
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.carousel-item.active {
  display: block;
  opacity: 1;
}

.carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  z-index: 10;
  transition: background var(--transition-fast);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-control:hover {
  background: rgba(0, 0, 0, 0.9);
}

.carousel-control.prev {
  left: 20px;
}

.carousel-control.next {
  right: 20px;
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.carousel-dot.active {
  background: #ffffff;
}

/* Mapa */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.map-wrapper iframe {
  width: 100%;
  height: 340px;
  border: none;
}

/* Contato */
.contato-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
  gap: 40px;
}

.contato-form h2 {
  margin-bottom: 6px;
}

.contato-form p {
  color: #d1d5db;
  margin-top: 0;
}

.form-group {
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #f9fafb;
}

.form-group input,
.form-group select {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  font-size: 0.95rem;
  outline: none;
  background: #f9fafb;
  color: #000000;
  transition:
    border-color var(--transition-fast),
    background var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus {
  border-color: #111827;
  background: #ffffff;
}

.form-row {
  display: flex;
  gap: 12px;
}

.form-row .form-group {
  flex: 1;
}

.contato-info h3 {
  margin-top: 0;
  color: #ffffff;
}

.contato-info p {
  margin: 4px 0;
  color: #d1d5db;
}

.contato-info a {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-fast);
}

.contato-info a:hover {
  border-color: #ffffff;
}

/* Footer */
.footer {
  padding: 16px 0 22px;
  background: #000000;
  color: #e5e7eb;
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-produtor {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

.footer-produtor-link img {
  height: 22px;
  width: auto;
  display: block;
}

/* Responsivo */
@media (max-width: 900px) {
  .nav-inner {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .hero {
    text-align: left;
  }

  .section-split .split-wrapper {
    flex-direction: column;
  }

  .contato-wrapper {
    grid-template-columns: 1fr;
  }
  
  .procedimentos-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .carousel-track {
    height: 300px;
  }
}

@media (max-width: 600px) {
  main {
    padding-top: 80px;
  }

  .hero-text {
    padding-inline: 0;
  }

  .section {
    padding: 56px 0;
  }

  .carousel-control {
    padding: 8px 12px;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .carousel-control.prev {
    left: 10px;
  }

  .carousel-control.next {
    right: 10px;
  }

  .hero-btn {
    width: 100%;
  }
  
  .procedimento-item {
    padding: 16px;
  }
  
  .procedimento-check {
    width: 36px;
    height: 36px;
  }
  
  .carousel-track {
    height: 250px;
  }
}
/* ===== CARROSSEL INFINITO ===== */
.infinite-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 40px;
}

.infinite-track {
  display: flex;
  width: calc(250px * 8); /* 8 imagens */
  animation: scroll 22s linear infinite;
}

.infinite-carousel img {
  width: 250px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  margin-right: 20px;
  box-shadow: 0 8px 26px rgba(0,0,0,0.15);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Ajuste no mobile */
@media (max-width: 768px) {
  .infinite-carousel img {
    width: 180px;
    margin-right: 12px;
  }
  .infinite-track {
    animation-duration: 18s;
  }
}
/* ===== CARROSSEL INFINITO ===== */
.infinite-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 40px;
}

.infinite-track {
  display: flex;
  /* deixa o navegador calcular a largura, em vez de fixar */
  animation: scroll 22s linear infinite;
}

.infinite-carousel img {
  flex: 0 0 auto;
  /* imagem nunca passa de 240px no desktop
     e nunca passa de 70% da largura da tela */
  width: min(240px, 70vw);
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  margin-right: 20px;
  box-shadow: 0 8px 26px rgba(0,0,0,0.15);
}

/* animação contínua */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .infinite-carousel {
    padding-inline: 12px;
  }

  .infinite-carousel img {
    /* menor no mobile, baseado na largura da tela */
    width: 65vw;
    margin-right: 12px;
  }
}
/* ===== CARROSSEL INFINITO ===== */
.infinite-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 40px;
}

.infinite-track {
  display: flex;
  animation: scroll 22s linear infinite;
}

/* DESKTOP: ocupar toda a largura da tela */
.infinite-carousel img {
  flex: 0 0 auto;
  width: 25vw; /* 4 imagens ocupam 100% */
  max-width: 350px; /* limite estético para telas muito grandes */
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  margin-right: 20px;
  box-shadow: 0 8px 26px rgba(0,0,0,0.15);
}

/* ANIMAÇÃO DO LOOP INFINITO */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .infinite-carousel {
    padding-inline: 12px;
  }

  .infinite-carousel img {
    width: 70vw;     /* imagem se adapta sem ficar gigante */
    max-width: 260px;
    margin-right: 12px;
  }
}
/* =======================
   BOTÕES – branco c/ texto preto
======================= */
.btn-primary,
.btn-full,
.hero-btn,
.section-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  background-color: #ffffff;
  color: #000000;
  border: 1px solid #000000;

  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Hover/pressionado */
.btn-primary:hover,
.btn-full:hover,
.hero-btn:hover,
.section-cta .btn-primary:hover {
  background-color: #000000;
  color: #ffffff;
  transform: translateY(-1px);
}

/* Mobile: largura total nos botões “cheios” */
.btn-full {
  width: 100%;
}
/* ===============================
   ESPAÇAMENTO VERTICAL GERAL
=============================== */

/* Parágrafos – mais espaço entre eles */
p {
  margin-bottom: 22px;       /* antes do próximo texto */
  line-height: 1.75;         /* mais fluido */
}

/* Headings com mais “respiro” em cima e embaixo */
h1, h2, h3, h4 {
  margin-top: 40px;
  margin-bottom: 20px;
  line-height: 1.25;         /* mantém firme, sem ficar frouxo */
}

/* Títulos principais */
h1 {
  margin-top: 0;             /* não empurra o hero */
  margin-bottom: 28px;
}

/* Subtítulo do hero */
.hero-sub {
  margin-top: 12px;
  margin-bottom: 32px;
}

/* Seções */
.section-header h2 {
  margin-bottom: 18px;
}

.section-header p {
  margin-bottom: 34px;
}

/* Nos textos divididos (quem sou eu) */
.split-text p {
  margin-bottom: 26px;
}

/* Procedimentos */
.procedimento-item {
  margin-bottom: 28px;
}

/* Formulário – mais espaçamento entre campos */
.form-group {
  margin-bottom: 24px;
}

.form-row .form-group {
  margin-bottom: 0;
  margin-top: 6px;
}

/* Contatos */
.contato-info p {
  margin-bottom: 18px;
}
/* ===============================
   AJUSTES DA IMAGEM "Quem sou eu"
=============================== */

/* Desktop */
.split-image img {
  width: 100%;
  height: auto;
  border-radius: 22px; /* arredondamento elegante */
  object-fit: cover;
  display: block;
}

/* MOBILE */
@media (max-width: 768px) {
  .split-image {
    width: 100%;
  }

  .split-image img {
    width: 100%;        /* fica full width */
    max-width: 100%;    /* evita limites */
    border-radius: 18px;
    margin-top: 20px;   /* dá respiro abaixo do texto */
  }

  .split-wrapper {
    flex-direction: column-reverse; /* imagem desce para baixo do texto (opcional) */
    gap: 20px;
  }
}
/* ===============================
   SEÇÃO LOCALIZAÇÃO – LADO A LADO
=============================== */

.local-wrapper {
  display: flex;
  align-items: stretch;
  gap: 40px;
}

/* Coluna texto */
.local-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.local-info h2 {
  margin-top: 0;
  margin-bottom: 18px;
}

.local-info p {
  margin-bottom: 16px;
}

.local-endereco {
  font-weight: 500;
}

.local-ref {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Coluna mapa */
.local-map {
  flex: 1.1;
}

.map-wrapper {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* RESPONSIVO – empilhado no mobile */
@media (max-width: 768px) {
  .local-wrapper {
    flex-direction: column;
    gap: 24px;
  }

  .local-map {
    order: 2;
  }

  .local-info {
    order: 1;
  }

  .map-wrapper {
    min-height: 220px;
  }
}
/* =====================================
   SEÇÃO "FALE COMIGO" – SIMPLES E CLEAN
===================================== */

.contato-simples {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 60px 20px;
}

.contato-simples h2 {
  margin-bottom: 20px;
}

.contato-desc {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 32px;
}

.contato-lista p {
  font-size: 1.15rem;
  margin-bottom: 16px;
}

.contato-lista a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: 0.2s ease;
}

.contato-lista a:hover {
  border-bottom: 1px solid #000;
}
/* =====================================
   ÍCONES E LISTA DE CONTATO
===================================== */

.contato-lista p {
  font-size: 1.15rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.contato-icone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Links bonitos */
.contato-lista a {
  color: #000;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: 0.2s ease;
}

.contato-lista a:hover {
  border-bottom: 1px solid #000;
}
/* ============================================
   PROCEDIMENTOS – mesma altura para TODOS os cards
============================================ */

.procedimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
  align-items: stretch;
  grid-auto-rows: 1fr; /* todas as linhas com a mesma altura */
}

/* “Achata” as colunas para os cards virarem itens diretos do grid */
.procedimentos-col {
  display: contents;
}

/* Cada card ocupa 100% da célula do grid */
.procedimento-item {
  height: 100%;
  margin-bottom: 0; /* sobrescreve margin extra que tinha */
  display: flex;
  align-items: flex-start;
}
/* =====================================
   FALE COMIGO – versão melhorada
===================================== */

.contato-simples {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 70px 20px;
}

.contato-simples h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.contato-desc {
  font-size: 1.15rem;
  opacity: 0.85;
  margin-bottom: 40px;
}

.contato-lista p {
  font-size: 1.2rem;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.contato-icone img,
.contato-icone svg {
  width: 28px;
  height: 28px;
  display: block;
}

.contato-lista a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: 0.2s ease;
}

.contato-lista a:hover {
  border-bottom: 1px solid #fff;
  opacity: 0.8;
}

/* MOBILE */
@media (max-width: 768px) {
  .contato-simples {
    padding: 50px 20px;
  }

  .contato-lista p {
    font-size: 1.1rem;
    gap: 12px;
  }

  .contato-icone img {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 768px) {
  .hero::before {
    background-image: url("Dra\ érika\ ristow\ estetica\ corporal\ e\ facial\ na\ barra\ da\ tijuca\ rj\ -\ fundo\ hero\ mobile\ 3.png"); /* SUA IMAGEM MOBILE */
    background-size: cover;
    background-position: center;
    opacity: 1; /* opcional – deixa mais visível no mobile */
  }
}
/* ===============================
   HERO — Ajuste exclusivo no mobile
================================ */
@media (max-width: 768px) {
  .hero-content {
    padding-top: 430px;   /* empurra tudo para baixo */
  }

  .hero-text {
    padding-top: 40px;    /* ajuste fino para descer ainda mais */
  }
}
/* ===============================
   NAVBAR — Centralização no mobile
================================ */
@media (max-width: 768px) {
  .nav-inner {
    justify-content: center !important;   /* garante centralização */
  }

  .nav-logo {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .nav-logo img {
    display: block;
    margin: 0 auto;               /* força o centro */
    height: 50px;                 /* opcional: igualar tamanho no mobile */
  }
}
