@import url("variables.css");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&display=swap");

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

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--black-deep);
  color: var(--white);
}

/* Header */

.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 90px;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  margin-left: -150px;
}

.logo img {
  height: 250px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav a:hover {
  color: var(--white);
}

.btn-header {
  padding: 8px 20px;
  background: var(--red-dark);
  color: var(--white) !important;
  border-radius: 4px;
  font-weight: 600;
}

.btn-header:hover {
  background: var(--red-medium);
}

.nav a {
  text-decoration: none;
  color: var(--gray-light);
  font-weight: 500;
  transition: 0.3s;
}

/* Hero */
.hero {
  position: relative;
  height: 60vh;
  background: url("../assets/images/background-hero.jpeg") no-repeat;
  background-size: cover;
  background-position: center 30%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(10, 10, 10, 0.8) 0%,
    rgba(10, 10, 10, 0.7) 70%,
    rgba(0, 0, 0, 1) 100%
  );
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 700px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-content span {
  background-color: var(--red-primary);
  padding: 5px 10px;
}

.hero-content p {
  margin-top: 15px;
  font-size: 1.2rem;
  color: var(--gray-light);
}

.hero-buttons {
  margin-top: 35px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn.primary {
  background-color: var(--red-primary);
  color: var(--white);
}

.btn.primary:hover {
  background-color: var(--red-medium);
}

.btn.outline {
  border: 2px solid var(--red-primary);
  color: var(--red-primary);
}

.btn.outline:hover {
  background-color: var(--red-primary);
  color: var(--white);
}

/* Menu Hambúrguer */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
  transition: 0.3s;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: 0.3s;
}

/* Animação do X quando aberto */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
  background: var(--red-primary);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
  background: var(--red-primary);
}

/* Sessão Cortes */
.cortes-section {
  padding: 80px 20px;
  background:
    linear-gradient(
      rgba(0, 0, 0, 0.5) 10%,
      rgba(0, 0, 0, 0.6) 30%,
      rgba(0, 0, 0, 0.8) 100%
    ),
    url("../assets/images/background2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--red-primary);
  background: linear-gradient(135deg, var(--red-primary), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  text-transform: uppercase;
}

.section-title p {
  color: var(--gray-light);
  margin: 10px;
}

.cortes-swiper {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 50px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  width: 50%;
  height: 500px;
  object-fit: cover;
  border-radius: 6px;
  filter: brightness(0.9);
  transition: 0.4s;
  display: block;
  margin: 0 auto;
}

.swiper-slide img:hover {
  filter: brightness(1.05);
}

/* Botões Swiper */
.swiper-button-next,
.swiper-button-prev {
  color: var(--red-primary) !important;
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
}

.swiper-button-next {
  right: 10px;
}

.swiper-button-prev {
  left: 10px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 30px;
  font-weight: bold;
}

.swiper-pagination {
  bottom: 10px !important;
}

.swiper-pagination-bullet {
  background: var(--gray-light);
  opacity: 0.4;
}

.swiper-pagination-bullet-active {
  background: var(--red-primary) !important;
  opacity: 1;
}

/* Sessão Kids */
.kids-section {
  padding: 80px 20px;
  background:
    linear-gradient(rgba(4, 4, 7, 0.95), rgba(0, 0, 0, 0.85)),
    url("../assets/images/background6.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.kids-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(212, 175, 55, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.subtitulo-kids {
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.kids-frase {
  font-size: 1.2rem !important;
  color: var(--white) !important;
  font-weight: 500;
  max-width: 600px;
  margin: 20px auto 0 !important;
  line-height: 1.6;
}

.kids-swiper {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 50px;
}

.kids-swiper .swiper-slide img {
  width: 50%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
  border: 3px solid var(--gold-light);
  box-shadow:
    0 10px 30px rgba(212, 175, 55, 0.2),
    0 0 40px rgba(212, 175, 55, 0.1);
  filter: brightness(1);
  transition: all 0.4s ease;
}

.kids-swiper .swiper-slide img:hover {
  filter: brightness(1.1);
  transform: scale(1.02);
  box-shadow:
    0 15px 40px rgba(212, 175, 55, 0.3),
    0 0 60px rgba(212, 175, 55, 0.15);
}

/* Preços */

.preco {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-light);
  margin: 20px 0;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.precos-section {
  padding: 200px 20px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("../assets/images/background3.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.precos-container {
  max-width: 1100px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.plano-card {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  position: relative;
  transition: 0.4s;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.plano-card:hover {
  transform: translateY(-8px);
  border: 1px solid var(--gold);
  box-shadow: 0 0 20px rgba(184, 134, 11, 0.5);
}

.plano-card h3 {
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--red-primary), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.descricao {
  color: var(--gray-medium);
}

.line {
  margin-top: 10px;
  padding: 6px;
  border-top: 1px solid var(--gold);
  color: var(--red-primary);
}

.btn-plano {
  padding: 12px 28px;
  background-color: var(--red-primary);
  border: none;
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.3s;
}

.btn-plano:hover {
  background-color: var(--gold);
}

.plano-card.destaque {
  border: 3px solid var(--gold);
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(184, 134, 11, 0.3);
}

.plano-card .tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--gold);
  color: var(--black-deep);
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 20px;
}

/* Outros serviços */
.outros-servicos {
  max-width: 1100px;
  margin: 80px auto 0;
  padding-top: 60px;
  border-top: 1px solid var(--gold-light);
}

.outros-servicos .section-title h3 {
  font-size: 2rem;
  background: linear-gradient(135deg, var(--red-primary), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.outros-servicos .section-title p {
  color: var(--gray-medium);
  font-size: 1rem;
}

.servicos-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.servicos-swiper {
  margin-top: 10px;
  padding-bottom: 0;
}

.servico-slide {
  height: auto;
}

.servico-slide .servico-item {
  height: 100%;
}

.servicos-prev,
.servicos-next,
.servicos-pagination {
  display: none;
}

.servico-item {
  background: rgba(20, 20, 20, 0.6);
  padding: 25px 20px;
  border-radius: 6px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: 0.3s;
}

.servico-item:hover {
  transform: translateY(-5px);
  border-color: var(--red-primary);
  box-shadow: 0 5px 20px rgba(177, 18, 23, 0.3);
}

.servico-item h4 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 600;
}

.preco-servico {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
  margin: 15px 0;
}

.btn-servico {
  padding: 8px 20px;
  background-color: transparent;
  border: 2px solid var(--red-primary);
  color: var(--red-primary);
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.3s;
  font-size: 0.9rem;
}

.btn-servico:hover {
  background-color: var(--red-primary);
  color: var(--white);
}

/* Promoções */

.promo-section {
  padding: 40px 20px;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(177, 18, 23, 0.14),
      transparent 55%
    ),
    linear-gradient(180deg, #090909 0%, #060606 100%);
}

.promo-container {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.promo-card {
  width: min(100%, 1080px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 8px;
  background: #111111;
}

.promo-banner {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Sobre */
.sobre-section {
  padding: 100px 20px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("../assets/images/background5.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.sobre-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sobre-imagem img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.sobre-conteudo h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--white);
  font-weight: 800;
}

.sobre-conteudo p {
  color: var(--gray-light);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.diferenciais {
  list-style: none;
  margin-bottom: 35px;
}

.diferenciais li {
  color: var(--gray-light);
  font-size: 1rem;
  margin-bottom: 12px;
  padding-left: 10px;
}

.diferenciais li::before {
  content: "✓";
  color: var(--gold);
  font-weight: bold;
  margin-right: 10px;
}

/* Depoimentos */
.depoimentos-section {
  padding: 100px 20px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
    url("../assets/images/background4.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.subtitulo {
  font-size: 0.9rem;
  letter-spacing: 3px;
  color: var(--gray-medium);
  margin-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
}

.destaque-gold {
  color: var(--gold-light);
}

.depoimentos-container {
  max-width: 1200px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.depoimento-card {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
  padding: 35px 25px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.4s;
  position: relative;
}

.depoimento-card::before {
  content: '"';
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 4rem;
  color: var(--red-primary);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.depoimento-card:hover {
  transform: translateY(-8px);
  border-color: var(--red-primary);
  box-shadow: 0 8px 30px rgba(177, 18, 23, 0.4);
}

.cliente-foto {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--red-primary);
  box-shadow: 0 0 20px rgba(177, 18, 23, 0.3);
}

.cliente-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: 0.3s;
}

.depoimento-card:hover .cliente-foto img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.estrelas {
  color: var(--gold-light);
  font-size: 1rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.depoimento-texto {
  color: var(--gray-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.cliente-nome {
  color: var(--red-primary);
  font-size: 1rem;
  font-weight: 600;
  margin-top: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Footer */
.footer {
  background: var(--black-deep);
  padding: 60px 20px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
}

.footer-coluna {
  color: var(--gray-light);
}

.footer-coluna h3 {
  color: var(--red-primary);
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-logo {
  height: 100px;
  margin-bottom: 15px;
}

.footer-coluna p {
  color: var(--gray-medium);
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-coluna ul {
  list-style: none;
}

.footer-coluna ul li {
  margin-bottom: 12px;
  color: var(--gray-medium);
  transition: 0.3s;
}

.footer-coluna ul li a {
  color: var(--gray-medium);
  text-decoration: none;
  transition: 0.3s;
}

.footer-coluna ul li a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.redes-sociais {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.redes-sociais a {
  width: 40px;
  height: 40px;
  background: var(--red-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  transition: 0.3s;
  text-decoration: none;
}

.redes-sociais a:hover {
  background: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(184, 134, 11, 0.4);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  color: var(--gray-dark);
  font-size: 0.9rem;
}

/* Loading ao carregar a página */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--black-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: 0.5s;
}

.page-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Animação On Scroll */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVIDADE ========== */

/* Mobile (até 768px) */
@media (max-width: 768px) {
  /* Header */
  .header {
    height: 60px;
  }

  .header-container {
    padding: 0 16px;
  }

  .logo {
    font-size: 1.1rem;
    margin-left: 0;
  }

  .logo img {
    height: 150px;
    margin-left: -100px;
  }

  .nav {
    gap: 10px;
  }

  .nav a {
    font-size: 0.75rem;
  }

  .btn-header {
    padding: 5px 10px;
    font-size: 0.75rem;
  }

  .menu-toggle {
    display: flex;
  }

  /* Menu mobile */
  .nav {
    position: fixed;
    top: 40px;
    right: 0;
    width: 50%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 0;
    padding: 30px 0;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    border-top: 1px solid rgba(177, 18, 23, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }

  .nav.active {
    transform: translateX(0);
  }

  .nav a {
    padding: 15px 24px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
  }

  .nav a:hover {
    background: rgba(177, 18, 23, 0.1);
    padding-left: 30px;
  }

  .btn-header {
    margin: 15px 24px;
    padding: 12px 30px !important;
    font-size: 1rem !important;
    text-align: center;
    border-radius: 6px;
  }

  .btn-header:hover {
    padding-left: 30px !important;
  }

  /* Hero */
  .hero {
    height: 50vh;
    min-height: 400px;
  }

  .hero-content {
    padding: 16px;
  }

  .hero-content h1 {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .hero-content p {
    font-size: 1rem;
    margin-top: 10px;
  }

  .hero-buttons {
    margin-top: 25px;
    gap: 12px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  /* Sessão Cortes */
  .cortes-section {
    padding: 60px 16px;
  }

  .section-title {
    margin-bottom: 30px;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .section-title p {
    font-size: 0.9rem;
  }

  .cortes-swiper {
    max-width: 100%;
    padding: 0 10px;
  }

  /* Promoções */

  .promo-container {
    grid-template-columns: 1fr;
  }

  .promo-section {
    padding: 50px 14px;
  }

  .promo-card {
    width: 100%;
    border-radius: 10px;
    padding: 6px;
  }

  .promo-banner {
    border-radius: 8px;
  }

  /* Outros serviços */
  .servicos-swiper {
    padding: 0 2px 10px;
  }

  .servicos-grid {
    display: flex !important;
    gap: 0;
    margin-top: 20px;
  }

  .servico-slide {
    width: auto;
  }

  .servico-item {
    min-height: 100%;
  }

  .servicos-prev,
  .servicos-next,
  .servicos-pagination {
    display: block;
  }

  .servicos-prev,
  .servicos-next {
    color: var(--red-primary) !important;
    width: 34px;
    height: 34px;
    top: 42%;
    transform: translateY(-50%);
    z-index: 5;
    background: transparent;
    border: none;
    border-radius: 0;
  }

  .servicos-prev {
    left: 10px;
  }

  .servicos-next {
    right: 10px;
  }

  .servicos-prev::after,
  .servicos-next::after {
    font-size: 18px;
    font-weight: 700;
  }

  .servicos-pagination {
    position: static !important;
    margin-top: 10px;
  }

  .servicos-pagination .swiper-pagination-bullet {
    background: var(--gray-light);
    opacity: 0.45;
  }

  .servicos-pagination .swiper-pagination-bullet-active {
    background: var(--red-primary);
    opacity: 1;
  }

  .servicos-pagination .swiper-pagination-bullet {
    background: var(--gray-light);
    opacity: 0.45;
  }

  .servicos-pagination .swiper-pagination-bullet-active {
    background: var(--red-primary);
    opacity: 1;
  }

  /* Sessão Kids */
  .kids-section {
    padding: 60px 16px;
  }

  .kids-frase {
    font-size: 1rem !important;
    padding: 0 10px;
  }

  .kids-swiper {
    max-width: 100%;
    padding: 0 10px;
  }

  .kids-swiper .swiper-slide img {
    width: 70%;
    height: 350px;
  }
}

@media (max-width: 480px) {
  /* Imagens menores no mobile */
  .swiper-slide img {
    width: 70%;
    height: 300px;
    border-radius: 4px;
  }

  .kids-swiper .swiper-slide img {
    width: 70%;
    height: 280px;
  }

  /* Botões Swiper menores */
  .swiper-button-next,
  .swiper-button-prev {
    width: 35px;
    height: 35px;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 20px;
  }

  /* Sobre */
  .sobre-section {
    padding: 60px 16px;
  }

  .sobre-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sobre-imagem img {
    height: auto;
  }

  .sobre-conteudo h2 {
    font-size: 1.8rem;
  }

  .sobre-conteudo p {
    font-size: 1rem;
  }

  /* Depoimentos */
  .depoimentos-section {
    padding: 60px 16px;
  }

  .depoimento-card {
    padding: 30px 20px;
  }

  .depoimento-card::before {
    font-size: 3rem;
    top: 10px;
    left: 15px;
  }

  .cliente-foto {
    width: 80px;
    height: 80px;
  }

  .depoimentos-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Footer */
  .footer {
    padding: 40px 16px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-logo {
    height: 100px;
  }

  .redes-sociais {
    justify-content: center;
  }

  .outros-servicos {
    margin-top: 60px;
    padding-top: 40px;
  }

  .servico-item {
    padding: 20px 15px;
  }

  .preco-servico {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .servicos-prev {
    left: 8px;
  }

  .servicos-next {
    right: 8px;
  }
}

/* Tablet (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  /* Header */
  .header {
    height: 74px;
  }

  .header-container {
    max-width: 100%;
    padding: 0 18px;
  }

  .logo {
    margin-left: 0;
  }

  .logo img {
    height: 160px;
  }

  .nav {
    gap: 14px;
  }

  .nav a {
    font-size: 0.9rem;
  }

  .btn-header {
    padding: 7px 12px;
    font-size: 0.85rem;
  }

  /* Hero */
  .hero {
    height: 56vh;
    min-height: 460px;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  /* Sessão Cortes */
  .cortes-section {
    padding: 72px 20px;
  }

  .section-title h2 {
    font-size: 2.2rem;
  }

  .cortes-swiper {
    max-width: 920px;
  }

  /* Sessão Kids */
  .kids-section {
    padding: 72px 20px;
  }

  .kids-swiper {
    max-width: 920px;
  }

  .kids-swiper .swiper-slide img {
    width: 72%;
    height: 440px;
  }

  /* Imagens médias no tablet */
  .swiper-slide img {
    width: 72%;
    height: 440px;
  }

  /* Preços */
  .precos-section {
    padding: 120px 20px;
  }

  .precos-container {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 22px;
  }

  .plano-card.destaque {
    transform: none;
  }

  /* Outros serviços */
  .outros-servicos {
    margin-top: 64px;
    padding-top: 46px;
  }

  .servicos-swiper {
    padding: 0 6px 12px;
  }

  .servicos-grid {
    display: flex !important;
    margin-top: 24px;
    gap: 0;
  }

  .servicos-prev,
  .servicos-next,
  .servicos-pagination {
    display: block;
  }

  .servicos-prev,
  .servicos-next {
    color: var(--red-primary) !important;
    width: 38px;
    height: 38px;
    top: 42%;
    transform: translateY(-50%);
    z-index: 5;
  }

  .servicos-prev {
    left: 10px;
  }

  .servicos-next {
    right: 10px;
  }

  .servicos-prev::after,
  .servicos-next::after {
    font-size: 20px;
    font-weight: 700;
  }

  .servicos-pagination {
    position: static !important;
    margin-top: 10px;
  }

  /* Promoções */
  .promo-section {
    padding: 56px 20px;
  }

  .promo-container {
    max-width: 860px;
  }

  /* Sobre */
  .sobre-section {
    padding: 80px 20px;
  }

  .sobre-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .sobre-imagem img {
    height: auto;
    max-width: 860px;
    margin: 0 auto;
  }

  .sobre-conteudo h2 {
    font-size: 2.2rem;
    text-align: center;
  }

  .sobre-conteudo p {
    text-align: center;
  }

  .diferenciais {
    max-width: 700px;
    margin: 0 auto 35px;
  }

  /* Depoimentos */
  .depoimentos-section {
    padding: 80px 20px;
  }

  .depoimentos-container {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 22px;
  }

  /* Footer */
  .footer-container {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 28px;
  }
}

/* Desktop Grande (acima de 1200px) */
@media (min-width: 1200px) {
  .cortes-swiper {
    max-width: 1300px;
  }

  .kids-swiper {
    max-width: 1300px;
  }

  .kids-swiper .swiper-slide img {
    height: 550px;
  }

  .swiper-slide img {
    height: 500px;
  }

  .section-title h2 {
    font-size: 3rem;
  }
}

/* Mobile Pequeno (celulares pequenos) */
@media (max-width: 480px) {
  .header {
    height: 55px;
  }

  .header-container {
    padding: 0 10px;
  }

  .logo img {
    height: 140px; /* Logo ainda menor em telas pequenas */
    margin-left: -100px;
  }

  .nav {
    gap: 8px;
  }

  .nav a {
    font-size: 0.7rem;
  }

  .btn-header {
    padding: 4px 8px;
    font-size: 0.7rem;
  }

  /* Sobre */
  .sobre-conteudo h2 {
    font-size: 1.6rem;
  }

  .sobre-imagem img {
    height: auto;
  }

  .diferenciais li {
    font-size: 0.9rem;
  }

  /* Depoimentos */
  .depoimento-card {
    padding: 25px 20px;
  }

  .cliente-foto {
    width: 80px;
    height: 80px;
  }

  .depoimento-texto {
    font-size: 0.85rem;
  }
}
