body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background: #f5f5f5;
}

.header {
  background-color: #f5f5f5;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

}

.navbar {
 display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.espaco {
    margin-right: 100px;
}

.logo {
  font-size: 1.9rem;
  font-weight: 700;
  color: #e91e63;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
}

.logo::after {
  content: "Designer de Sombrancelha - Depiladora - Manicure";
  display: block;
  font-size: 0.65rem;
  letter-spacing: .4px;
  margin-top: 4px;
  color: #c2185b;
  font-weight: 500;
}

.logo-link {
  text-decoration: none;
  color: inherit;
}

.logo-link:visited {
  color: inherit;
}

.logo-link:hover {
  color: inherit;
}


.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: #333;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #e91e63;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}



.nav-links a:hover {
  color: #c2185b;
}

/* Botão hambúrguer */
.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  transition: transform 0.3s ease;
}

.menu-toggle:hover {
  transform: scale(1.1);
}

/* Responsividade */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background-color: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin-bottom: 0.5rem;
  }

  .nav-links li:last-child {
    margin-bottom: 0;
  }
}
/* Conteúdo do Header */

.logo-img {
  height: 87px;
  width: 87px;
  display: block;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: calc(100% - 80px); /* Considerando a altura aproximada da navbar */
  padding: 20px;
}

.header-content .texto {
  max-width: 500px;
}

.header-content .texto h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.header-content .texto p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn {
  background-color: #e91e63;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #c2185b;
  transform: translateY(-3px);
}


/* Imagem da transista */
.header-content .imagem img {
  width: 300px;
  border-radius: 50%;
  border: 5px solid white;
}

.hero {
  background-image: url('../img/fotos_ailane/img1.jpeg');
  background-size: cover;
  background-position: center;
  min-height: 100vh; /* <<< trocou height */
  position: relative;
  color: white;
}


/* Sobreposição escura */
.overlay {
  background-color: rgba(0, 0, 0, 0.6);
  min-height: 100vh; /* <<< trocou height */
  padding: 80px 0;   /* <<< espaço pro botão respirar */
  display: flex;
  justify-content: center;
  align-items: center;
}


/* Conteúdo central */
.hero-content {
  text-align: center;
  padding: 0 200px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 12px;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 42px;
}


.btn {
  background-color: #e91e63;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

html {
  scroll-behavior: smooth;
}


section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

.sobre {
  background-color: #fff;
  padding: 60px 20px;
}

.sobre-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
  gap: 40px;
}

.sobre-texto {
  flex: 1 1 400px;
}

.sobre-texto h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #222;
}

.sobre-texto p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #444;
}

.sobre-imagem {
  flex: 1 1 300px;
  text-align: center;
}

.sobre-imagem img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* fotos do ambiente */

/* ================= CLINIC SLIDER ================= */

.clinic-section {
  padding: 60px 20px;
  background: #f5f5f5;
  text-align: center;
}

.clinic-title {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 10px;
}

.clinic-title span {
  font-weight: 300;
}

.clinic-subtitle {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 1.1rem;
}

/* Swiper container */
.clinic-swiper {
  padding-bottom: 50px;
  max-width: 1100px;
  margin: auto;
}

/* Cada slide */
.clinic-slide {
  display: flex;
  justify-content: center;
}

/* Imagens */
.clinic-slide img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.clinic-slide img {
  max-width: 230px;
  height: 300px;
}


.clinic-slide img:hover {
  transform: scale(1.05);
}

/* Setas personalizadas */
.clinic-next,
.clinic-prev {
  color: #e91e63;
}

.clinic-next::after,
.clinic-prev::after {
  font-size: 28px;
  font-weight: bold;
}

/* Bolinhas */
.clinic-pagination .swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}

.clinic-pagination .swiper-pagination-bullet-active {
  background: #e91e63;
}

/* ===== SETAS PERSONALIZADAS CLÍNICA ===== */

.clinic-prev,
.clinic-next {
  width: 44px;
  height: 44px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e91e63;
  transition: all 0.3s ease;
}

.clinic-prev:hover,
.clinic-next:hover {
  background: #e91e63;
  color: #fff;
  transform: scale(1.1);
}

/* Tamanho do ícone da seta */
.clinic-prev::after,
.clinic-next::after {
  font-size: 18px;
  font-weight: bold;
}

/* ===== SETAS PERSONALIZADAS VÍDEOS ===== */

.videos-prev,
.videos-next {
  width: 44px;
  height: 44px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e91e63;
  transition: all 0.3s ease;
}

.videos-prev:hover,
.videos-next:hover {
  background: #e91e63;
  color: #fff;
  transform: scale(1.1);
}

.videos-prev::after,
.videos-next::after {
  font-size: 18px;
  font-weight: bold;
}




/* galeria */

.galeria {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; /* Espaço entre as imagens */
  justify-content: center; /* Centraliza as imagens */
}

.galeria img {
  width: calc(50% - 10px); /* 2 colunas com gap */
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Para telas maiores, mostrar 3 colunas */
@media (min-width: 600px) {
  .galeria img {
    width: calc(33.333% - 10px);
  }
}

@media (max-width: 768px) {
  .logo-img {
    height: 50px;
  }
}

.portfolio .galeria {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.portfolio img {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
}

/* Cabeçalho da seção de portfólio com botão */
.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.portfolio-header h2 {
  font-size: 2rem;
}

/* Botão Ver mais */
.btn-vermais {
  background-color: #e91e63;
  color: white;
  padding: 8px 18px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn-vermais:hover {
  background-color: #c2185b;
}

/* Galeria */
.galeria {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.galeria img {
   width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(233,30,99,0.3);
  object-fit: cover;
  height: 100%;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.galeria img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(233,30,99,0.5);
}


/* localização */

.localizacao {
  background: #f6f6f6;
  padding: 80px 20px;
}

.localizacao-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.localizacao-texto h2 {
  font-size: 42px;
  color: #333;
  margin-bottom: 20px;
}

.localizacao-texto h2 span {
  color: #e91e63; /* rosa / estética */
}

.localizacao-texto p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  max-width: 420px;
}

.btn-localizacao {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: #e91e63;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-localizacao:hover {
  background: #c2185b;
}

.localizacao-mapa iframe {
  width: 100%;
  height: 420px;
  border: none;
  border-radius: 14px; /* borda arredondada */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18); /* sombra */
}


@media (max-width: 900px) {
  .localizacao-container {
    grid-template-columns: 1fr;
  }

  .localizacao-texto {
    text-align: center;
  }

  .localizacao-texto p {
    margin-left: auto;
    margin-right: auto;
  }
}

.localizacao {
  max-width: 100%;
  padding: 100px 0;
}








/* botão /* ================= FOOTER ================= */

footer {
  width: 100%;
  background: linear-gradient(135deg, #fde4ec, #fff);
  padding: 24px 0;
  border-top: 2px solid #f8bbd0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* redes */
footer .redes {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}


footer .redes a {
  text-decoration: none;
  color: #c2185b;
  font-weight: 600;
}

footer .redes a:hover {
  color: #e91e63;
}

/* REMOVE AZUL PADRÃO */
footer a,
footer a:visited,
footer a:active {
  color: #c2185b;
}


/* REDES SOCIAIS */

/* ================= BOTÕES CONTATO HEADER ================= */



.header-contato {
  display: flex;
  align-items: center;
  margin-left: auto; /* empurra tudo para a direita */
}

/* Botão WhatsApp */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
}

/* espaço EXTRA entre WhatsApp e Instagram */
.btn-whatsapp {
  margin-right: 24px; /* <<< ISSO resolve seu pedido */
}

.espaco_redes {
  margin-right: 20px;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

/* Botão Instagram */
.btn-instagram {
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.btn-instagram img {
  width: 20px;
  height: 20px;
}

.btn-instagram:hover {
  transform: scale(1.12);
}


@media (max-width: 768px) {
  .header-contato {
    gap: 12px;
  }

  .btn-whatsapp {
    padding: 8px 14px;
    font-size: 13px;
    margin-right: 16px; /* menor no mobile */
  }

  .btn-instagram {
    width: 36px;
    height: 36px;
  }

  .btn-instagram img {
    width: 18px;
    height: 18px;
  }
}



.mensagem-erro {
  color: #b00020;
  background-color: #ffe9e9;
  border: 1px solid #b00020;
  padding: 10px;
  border-radius: 6px;
  font-size: 0.95rem;
  margin-top: 5px;
}


/* Mapa com altura fixa e largura 100% */
.mapa {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* css do formulario  */

.agendamento {
  background: #f5f5f5;
  padding: 5rem;
  margin-top: 2rem;
  padding-bottom: 4rem;
  
}

.agendamento-container {
  max-width: 500px;
  margin: auto;
  
}

.agendamento form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  
}



.agendamento input,
.agendamento select,
.agendamento button {
  border-radius: 100px;
  padding: 10px;
  border: 1px solid #ddd;
  font-size: 1rem;
 
  
}

.agendamento button {
  background-color: #e91e63;
  border-radius: 100px;
  color: white;
  border: none;
  cursor: pointer;
}

.agendamento button:hover {
  background-color: #b4194d;
}



html, body {
  margin: 0;
  padding: 0;
}


body {
  overflow-x: hidden;
}

/* videos do index */

.videos-section {
  padding: 3rem 1rem;
  background: #fff;
  text-align: center;
}

.videos-title {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.videos-title span {
  color: #e91e63;
}

.videos-subtitle {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: #666;
}

.video-slide video {
  width: 100%;
  max-height: 450px;
  border-radius: 12px;
  object-fit: cover;
}


.header {
  background-color: #f5f5f5;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

}

.navbar {
 display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.espaco {
    margin-right: 100px;
}

.logo {
  font-size: 1.9rem;
  font-weight: 700;
  color: #e91e63;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
}

.logo::after {
  content: "Designer de Sombrancelha - Depiladora - Manicure";
  display: block;
  font-size: 0.65rem;
  letter-spacing: .4px;
  margin-top: 4px;
  color: #c2185b;
  font-weight: 500;
}

.logo-link {
  text-decoration: none;
  color: inherit;
}

.logo-link:visited {
  color: inherit;
}

.logo-link:hover {
  color: inherit;
}


.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: #333;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #e91e63;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}



.nav-links a:hover {
  color: #c2185b;
}

/* Botão hambúrguer */
.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  transition: transform 0.3s ease;
}

.menu-toggle:hover {
  transform: scale(1.1);
}

/* Responsividade */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background-color: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin-bottom: 0.5rem;
  }

  .nav-links li:last-child {
    margin-bottom: 0;
  }
}
/* Conteúdo do Header */

.logo-img {
  height: 87px;
  width: 87px;
  display: block;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: calc(100% - 80px); /* Considerando a altura aproximada da navbar */
  padding: 20px;
}

.header-content .texto {
  max-width: 500px;
}

.header-content .texto h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.header-content .texto p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn {
  background-color: #e91e63;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #c2185b;
  transform: translateY(-3px);
}


/* Imagem da transista */
.header-content .imagem img {
  width: 300px;
  border-radius: 50%;
  border: 5px solid white;
}




/* Conteúdo central */
.hero-content {
  text-align: center;
  padding: 0 200px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 12px;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 42px;
}


.btn {
  background-color: #e91e63;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

html {
  scroll-behavior: smooth;
}


section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

.sobre {
  background-color: #fff;
  padding: 60px 20px;
}

.sobre-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
  gap: 40px;
}

.sobre-texto {
  flex: 1 1 400px;
}

.sobre-texto h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #222;
}

.sobre-texto p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #444;
}

.sobre-imagem {
  flex: 1 1 300px;
  text-align: center;
}

.sobre-imagem img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* fotos do ambiente */

/* ================= CLINIC SLIDER ================= */

.clinic-section {
  padding: 60px 20px;
  background: #f5f5f5;
  text-align: center;
}

.clinic-title {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 10px;
}

.clinic-title span {
  font-weight: 300;
}

.clinic-subtitle {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 1.1rem;
}

/* Swiper container */
.clinic-swiper {
  padding-bottom: 50px;
  max-width: 1100px;
  margin: auto;
}

/* Cada slide */
.clinic-slide {
  display: flex;
  justify-content: center;
}

/* Imagens */
.clinic-slide img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.clinic-slide img {
  max-width: 230px;
  height: 300px;
}


.clinic-slide img:hover {
  transform: scale(1.05);
}

/* Setas personalizadas */
.clinic-next,
.clinic-prev {
  color: #e91e63;
}

.clinic-next::after,
.clinic-prev::after {
  font-size: 28px;
  font-weight: bold;
}

/* Bolinhas */
.clinic-pagination .swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}

.clinic-pagination .swiper-pagination-bullet-active {
  background: #e91e63;
}

/* ===== SETAS PERSONALIZADAS CLÍNICA ===== */

.clinic-prev,
.clinic-next {
  width: 44px;
  height: 44px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e91e63;
  transition: all 0.3s ease;
}

.clinic-prev:hover,
.clinic-next:hover {
  background: #e91e63;
  color: #fff;
  transform: scale(1.1);
}

/* Tamanho do ícone da seta */
.clinic-prev::after,
.clinic-next::after {
  font-size: 18px;
  font-weight: bold;
}

/* ===== SETAS PERSONALIZADAS VÍDEOS ===== */

.videos-prev,
.videos-next {
  width: 44px;
  height: 44px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e91e63;
  transition: all 0.3s ease;
}

.videos-prev:hover,
.videos-next:hover {
  background: #e91e63;
  color: #fff;
  transform: scale(1.1);
}

.videos-prev::after,
.videos-next::after {
  font-size: 18px;
  font-weight: bold;
}




/* galeria */

.galeria {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; /* Espaço entre as imagens */
  justify-content: center; /* Centraliza as imagens */
}

.galeria img {
  width: calc(50% - 10px); /* 2 colunas com gap */
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Para telas maiores, mostrar 3 colunas */
@media (min-width: 600px) {
  .galeria img {
    width: calc(33.333% - 10px);
  }
}

@media (max-width: 768px) {
  .logo-img {
    height: 50px;
  }
}

.portfolio .galeria {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.portfolio img {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
}

/* Cabeçalho da seção de portfólio com botão */
.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.portfolio-header h2 {
  font-size: 2rem;
}

/* Botão Ver mais */
.btn-vermais {
  background-color: #e91e63;
  color: white;
  padding: 8px 18px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn-vermais:hover {
  background-color: #c2185b;
}

/* Galeria */
.galeria {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.galeria img {
   width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(233,30,99,0.3);
  object-fit: cover;
  height: 100%;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.galeria img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(233,30,99,0.5);
}


/* localização */

.localizacao {
  background: #f6f6f6;
  padding: 80px 20px;
}

.localizacao-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.localizacao-texto h2 {
  font-size: 42px;
  color: #333;
  margin-bottom: 20px;
}

.localizacao-texto h2 span {
  color: #e91e63; /* rosa / estética */
}

.localizacao-texto p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  max-width: 420px;
}

.btn-localizacao {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: #e91e63;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-localizacao:hover {
  background: #c2185b;
}

.localizacao-mapa iframe {
  width: 100%;
  height: 420px;
  border: none;
  border-radius: 14px; /* borda arredondada */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18); /* sombra */
}


@media (max-width: 900px) {
  .localizacao-container {
    grid-template-columns: 1fr;
  }

  .localizacao-texto {
    text-align: center;
  }

  .localizacao-texto p {
    margin-left: auto;
    margin-right: auto;
  }
}

.localizacao {
  max-width: 100%;
  padding: 100px 0;
}








/* botão /* ================= FOOTER ================= */

footer {
  width: 100%;
  background: linear-gradient(135deg, #fde4ec, #fff);
  padding: 24px 0;
  border-top: 2px solid #f8bbd0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* redes */
footer .redes {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}


footer .redes a {
  text-decoration: none;
  color: #c2185b;
  font-weight: 600;
}

footer .redes a:hover {
  color: #e91e63;
}

/* REMOVE AZUL PADRÃO */
footer a,
footer a:visited,
footer a:active {
  color: #c2185b;
}


/* REDES SOCIAIS */

/* ================= BOTÕES CONTATO HEADER ================= */



.header-contato {
  display: flex;
  align-items: center;
  margin-left: auto; /* empurra tudo para a direita */
}

/* Botão WhatsApp */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
}

/* espaço EXTRA entre WhatsApp e Instagram */
.btn-whatsapp {
  margin-right: 24px; /* <<< ISSO resolve seu pedido */
}

.espaco_redes {
  margin-right: 20px;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}

/* Botão Instagram */
.btn-instagram {
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.btn-instagram img {
  width: 20px;
  height: 20px;
}

.btn-instagram:hover {
  transform: scale(1.12);
}


@media (max-width: 768px) {
  .header-contato {
    gap: 12px;
  }

  .btn-whatsapp {
    padding: 8px 14px;
    font-size: 13px;
    margin-right: 16px; /* menor no mobile */
  }

  .btn-instagram {
    width: 36px;
    height: 36px;
  }

  .btn-instagram img {
    width: 18px;
    height: 18px;
  }
}



.mensagem-erro {
  color: #b00020;
  background-color: #ffe9e9;
  border: 1px solid #b00020;
  padding: 10px;
  border-radius: 6px;
  font-size: 0.95rem;
  margin-top: 5px;
}


/* Mapa com altura fixa e largura 100% */
.mapa {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* css do formulario  */

.agendamento {
  background: #f5f5f5;
  padding: 5rem;
  margin-top: 2rem;
  padding-bottom: 4rem;
  
}

.agendamento-container {
  max-width: 500px;
  margin: auto;
  
}

.agendamento form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  
}



.agendamento input,
.agendamento select,
.agendamento button {
  border-radius: 100px;
  padding: 10px;
  border: 1px solid #ddd;
  font-size: 1rem;
 
  
}

.agendamento button {
  background-color: #e91e63;
  border-radius: 100px;
  color: white;
  border: none;
  cursor: pointer;
}

.agendamento button:hover {
  background-color: #b4194d;
}



html, body {
  margin: 0;
  padding: 0;
}


body {
  overflow-x: hidden;
}

/* videos do index */

.videos-section {
  padding: 3rem 1rem;
  background: #fff;
  text-align: center;
}

.videos-title {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.videos-title span {
  color: #e91e63;
}

.videos-subtitle {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: #666;
}

.video-slide video {
  width: 100%;
  max-height: 450px;
  border-radius: 12px;
  object-fit: cover;
}

@media (max-width: 768px) {

  /* Header compacto */
  .header {
    padding: 6px 12px;
  }

  /* Navbar simples e em linha */
  .navbar {
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  /* SOME com o título no mobile */
  .logo-link {
    display: none;
  }

  /* Logo imagem menor */
  .logo-img {
    width: 42px;
    height: 42px;
  }

  /* Remove espaçamentos inúteis */
  .espaco,
  .espaco_redes {
    display: none;
  }

  /* Contato sempre visível e compacto */
  .header-contato {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 0;
  }

  /* WhatsApp vira compacto */
  .btn-whatsapp {
    padding: 6px 10px;
    font-size: 12px;
    margin-right: 0;
    white-space: nowrap;
  }

  /* Instagram compacto */
  .btn-instagram {
    width: 34px;
    height: 34px;
  }

  .btn-instagram img {
    width: 16px;
    height: 16px;
  }

  /* Menu hambúrguer visível */
  .menu-toggle {
    display: block;
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {

  /* ===== HERO ===== */
  .hero-content {
    width: 100%;
    padding: 0 16px;
  }

  .hero-content h1 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 14px;
    white-space: normal;
  }

  /* ===== BOTÃO ===== */
  .btn-agendar {
    width: 100%;               /* ocupa tudo */
    display: flex;             /* evita sobreposição */
    justify-content: center;
    align-items: center;

    padding: 14px;
    font-size: 15px;
    line-height: 1;

    white-space: nowrap;       /* texto em uma linha */
    border: none;
    outline: none;
    box-shadow: none;
  }
}




