/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

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

ul {
  list-style: none;
}

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

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #333;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #ff7eb3, #ff758c);
}

/* Efeito brilhoso no botão Agendar */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  background: linear-gradient(to right, #ff7eb3, #ff758c);
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  position: relative; /* necessário para o brilho */
  overflow: hidden; /* esconde o brilho fora do botão */
}
/* Brilho */
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%; /* começa fora do botão */
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  transition: all 0.3s ease;
}
/* Animação do brilho */
.btn:hover::after {
  animation: shine 1s forwards;
}
@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%; /* atravessa o botão completamente */
  }
}
.btn img {
  width: 20px; /* Tamanho do ícone */
  height: 20px;
  object-fit: contain; /* Garante que o ícone não distorça */
}

.btn:hover {
  background: linear-gradient(to right, #ff758c, #ff7eb3);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 117, 140, 0.3);
}

section {
  padding: 80px 0;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center; /* centraliza verticalmente */
  justify-content: flex-start; /* texto começa à esquerda */
  gap: 10px; /* espaço entre texto e logo */
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff758c;
}

.logo h1 {
  margin: 0;
  font-size: 24px; /* ajuste conforme quiser */
}

.logo img {
  width: 50px; /* tamanho do logo */
  height: auto;
  display: block;
}

.menu {
  display: flex;
}

.menu li {
  margin-left: 30px;
}

.menu a {
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #ff758c;
}

.menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ff758c;
  transition: width 0.3s ease;
}

.menu a:hover::after {
  width: 100%;
}

.mobile-menu-icon {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease;
}

.hero .btn {
  animation: fadeIn 1.5s ease;
}

/* Services Section */
.services {
  background-color: #f9f9f9;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(to right, #ff7eb3, #ff758c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
  font-size: 1.8rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
}

.service-card p {
  color: #666;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Duas colunas: texto e imagem */
  gap: 50px;
  align-items: center;
}

/* Parágrafos */
.about-text p {
  margin-bottom: 20px;
  color: #666;
}

/* Imagem */
.about-image img {
  width: 100%; /* Responsiva */
  max-width: 500px; /* Limite de tamanho */
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.gallery-item video {
  width: 100%;
  height: 250px;
  object-fit: cover; /* corta o vídeo para caber proporcionalmente */
  border-radius: 10px;
  display: block;
}

/* MOBILE: tela menor que 768px */
@media screen and (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr; /* Uma coluna só */
    text-align: center; /* Centraliza o texto */
  }

  .about-image {
    margin-top: 20px; /* Espaço entre texto e imagem */
  }

  .about-image img {
    max-width: 100%; /* Imagem se ajusta ao container */
  }
}

/* Gallery Section */
.gallery {
  background-color: #f9f9f9;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.gallery-item img {
  transition: transform 0.5s ease;
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.gallery-item video {
  transition: transform 0.5s ease;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-item:hover video {
  transform: scale(1.1);
}

/* Testimonials Section */
.testimonials {
  text-align: center;
}

.google-reviews {
  display: flex;
  justify-content: center;
  margin: 0 auto 50px;
  max-width: 100%;
  overflow: hidden; /* esconde bordas do iframe */
  border-radius: 20px; /* define o arredondamento desejado */
}

.google-reviews iframe {
  width: 80%;
  max-width: 800px;
  height: 350px;
  border: none;
  display: block;
}

/* Container do mapa com cantos arredondados */
.map-container {
  width: 80%;
  max-width: 800px;
  height: 350px;
  margin: 0 auto 50px;
  border-radius: 20px; /* cantos arredondados */
  overflow: hidden; /* esconde bordas do iframe */
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.testimonials-slider {
  display: flex;
  overflow-x: auto; /* permite rolar se precisar */
  gap: 20px; /* espaço entre depoimentos */
  justify-content: center;
  flex-wrap: wrap; /* para mobile */
}
/* Centraliza os cards de avaliações */
/* Centraliza os cards de avaliações */
.reviews-list {
  display: flex;
  flex-direction: column; /* cada card embaixo do outro */
  justify-content: center; /* centraliza verticalmente se necessário */
  align-items: center; /* centraliza horizontalmente */
  gap: 30px; /* espaço entre os cards */
  margin-top: 30px;
}

.review-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  max-width: 350px; /* mantém os cards menores e centralizados */
  width: 100%; /* ocupa toda a largura do max-width */
  text-align: center;
}

/* Contact Section */
.contact {
  background-color: #f9f9f9;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact-item i {
  font-size: 1.5rem;
  color: #ff758c;
  margin-right: 15px;
  margin-top: 5px;
}

.contact-item h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #333;
}

.contact-item p {
  color: #666;
}

/* Ícones das Redes Sociais */
.social-media {
  display: flex;
  flex-wrap: wrap; /* permite quebrar linha no mobile */
  gap: 15px; /* espaço entre os ícones */
  margin-top: 20px;
}

.social-icon {
  width: 40px; /* largura fixa */
  height: 40px; /* altura fixa para manter quadrado */
  min-width: 40px; /* garante tamanho mínimo */
  min-height: 40px;
  border-radius: 50%; /* deixa círculo perfeito */
  background-color: #ff758c;
  color: #fff;
  display: flex;
  align-items: center; /* centraliza ícone verticalmente */
  justify-content: center; /* centraliza ícone horizontalmente */
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #333;
  transform: translateY(-5px);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #ff758c;
  outline: none;
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  padding: 30px 0 15px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-logo h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #ff758c;
}

.footer-links h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #fff;
}

/* Ajuste dos Links Rápidos do Footer */
.footer-links ul {
  display: flex; /* ativa flexbox para alinhar horizontalmente */
  flex-wrap: wrap; /* permite quebrar linha se não couber */
  gap: 15px; /* espaço entre os links */
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin: 0; /* remove margens verticais extras */
}

.footer-links ul li a {
  display: inline-block; /* mantém cada link como bloco inline */
  padding: 5px 10px; /* aumenta área clicável */
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #ff758c;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #ccc;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
  .about-content,
  .contact-content,
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-image {
    order: -1;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero h2 {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 768px) {
  .menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: 20px 0;
  }

  .menu.active {
    display: flex;
  }

  .menu li {
    margin: 10px 0;
    text-align: center;
  }

  .mobile-menu-icon {
    display: block;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

@media screen and (max-width: 576px) {
  section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .service-card,
  .testimonial-content {
    padding: 20px;
  }

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

  .contact-item {
    flex-direction: column;
  }

  .contact-item i {
    margin-bottom: 10px;
  }
}
