/* ============================================
   GOOGLE FONTS
============================================ */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");
/* IMPORT EXTRA */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500&display=swap");

/* MAIN */
.main {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.swiper-wrapper {
  display: flex !important;
}

/* SWIPER */
.swiper {
  display: none;
  position: relative;
  width: 100%;
  height: 100%;
}
/* BLUR APLICADO NO CARROSSEL */
.swiper.blur {
  filter: blur(14px);
  transition: filter 0.6s ease;
}
.swiper.active {
  display: block;
}

/* BLUR APLICADO NO CARROSSEL */
.swiper.blur {
  filter: blur(14px);
  transition: filter 0.6s ease;
}


/* ============================================
   RESET GLOBAL
============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* ============================================
   BASE
============================================ */
body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #0ABAB5;
  background-color: #fefefe;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   HEADER
============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.exit-carousel {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo a:hover {
  opacity: 0.8;
}

.logo-img {
  height: 65px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.header.scroll-up .logo-img {
  transform: scale(0.95);
}

.header.scroll-down .logo-img {
  transform: scale(0.9);
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: #222;
  margin-left: 12px;
  transition: color 0.3s ease;
}

.logo a:hover .brand-name {
  color: #0ABAB5;
}

/* ============================================
   NAVEGAÇÃO
============================================ */
.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 35px;
  list-style: none;
}

.nav-link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #0ABAB5;
  text-decoration: none;
  padding: 5px 0;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #0ABAB5;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* MENU MOBILE */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #0ABAB5;
  cursor: pointer;
   transform: rotate(0deg); /* estado inicial GARANTIDO */
  transition: transform 0.4s ease;
}
.menu-toggle.active {
  transform: rotate(90deg);
}

/* ============================================
   SLIDER / HERO
============================================ */
.main {
  position: relative;
  width: 100%;
  height: 100vh;
}

.wrapper,
.slide {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  overflow: hidden;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 186, 181, 0.15);
  z-index: 10;
}

.slide .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-data {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 100;
}

.image-data span {
  font-size: 14px;
  color: #fff;
}

.image-data h2 {
  font-size: 45px;
  font-weight: 600;
  color: #fff;
}

/* BOTÃO SLIDE */
a.button {
  display: inline-block;
  margin-top: 25px;
  padding: 10px 20px;
  border-radius: 25px;
  background: #fff;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

a.button:hover {
  background-color: #0ABAB5;
  color: #fff;
}

/* ============================================
   SWIPER
============================================ */
.nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

.nav-btn::before,
.nav-btn::after {
  font-size: 25px;
  color: #fff;
}

.swiper {
  display: none;
}

.swiper.active {
  display: block;
}

.swiper-button-next { right: 50px; }
.swiper-button-prev { left: 50px; }

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  visibility: hidden;
}

.swiper-pagination-bullet-active {
  background-color: #c87e4f;
  border: 2px solid #fff;
}

/* ============================================
   OVERLAY INICIAL
============================================ */
.start-overlay {
  position: absolute;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  background: rgba(10, 186, 181, 0.2);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.start-overlay.hide {
  opacity: 0;
  visibility: hidden;
}
.start-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.start-buttons .start-btn {
  min-width: 160px;
}

.start-btn {
  padding: 18px 48px;
  font-size: 18px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  background: #ffffff;
  color: #222;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.start-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  background-color: #0ABAB5;
  color: #222;
}

/* ============================================
   NOME DA PEÇA SOBRE A IMAGEM
============================================ */
.piece-overlay {
  position: absolute;
  inset: 0;
  display: flex;
   align-items: flex-start;      /* 👈 centro vertical */
  justify-content: center;
  padding-top: 120px;  /* 👈 centro horizontal */
  z-index: 20;

  /* degradê mais suave */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0.35)
  );
}

.piece-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #fff;
  text-align: center;

  padding: 14px 26px;
  background: rgba(10, 186, 181, 0.3); /* 👈 mais leve */
  backdrop-filter: blur(8px);        /* 👈 blur um pouco maior */
  border-radius: 30px;

  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}



/* BLUR */

.footer {
    background-color: #222;
    color: #ddd;
    padding: 40px 0 20px;
    width: 100%;
}

/* CONTEÚDO PRINCIPAL (3 COLUNAS) */
.footer-main-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 30px;
}

/* LINHA DIVISÓRIA */
.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    margin: 25px 0;
    width: 100%;
}

/* SEÇÃO "SIGA-NOS" */
.footer-social-section {
    text-align: center;
    padding: 20px 0;
}

.social-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ccc;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.08);
    color: #ddd;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-link:hover {
    background-color: #0ABAB5;
    color: #222;
    transform: translateY(-3px);
}

/* COPYRIGHT */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.copyright {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
}

/* LOGO FOOTER */
.footer-brand .logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 150px;
}

.footer-brand .logo-img {
    height: 60px;
    width: auto;
    opacity: 0.9;
    display: block;
    max-width: 170px;
    height: auto;
    object-fit: contain;
}

.footer-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    color: white;
    margin-left: 10px;
}

.footer-description {
    font-size: 14px;
    line-height: 2;
    color: #aaa;
    margin: 80px 0;
    max-width: 320px;
}

.footer-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
    color: white;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-list a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #0ABAB5;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #aaa;
}

.contact-info i {
    color: #0ABAB5;
    min-width: 18px;
    font-size: 14px;
}

.whatsapp-footer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
    border-radius: 4px;
}

.whatsapp-footer-btn:hover {
    background-color: #0ABAB5;
}
.swiper-slide {
  flex-shrink: 0 !important;
}

/* ============================================
   ANIMAÇÃO HAMBURGUER
============================================ */
.menu-toggle {
  transition: transform 0.4s ease;
}

.menu-toggle.active {
  transform: rotate(90deg);
}


/* ============================================
   MENU MOBILE
============================================ */
/* ============================================
   MENU MOBILE – DESLIZE SUAVE (SEM PISCAR)
============================================ */
@media (max-width: 768px) {

  /* Botão hamburguer */
  .menu-toggle {
    display: block;
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 3000;
    background: none;
    border: none;
    font-size: 24px;
    color: #0ABAB5;
    cursor: pointer;
    transform: rotate(0deg);
    transition: transform 0.4s ease;
  }
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
  .menu-toggle.active {
    transform: rotate(90deg);
  }

  /* MENU (estado fechado) */
  .nav {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    display: flex;
    justify-content: center;
    align-items: center;

    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;

    transition:
      transform 0.6s ease,
      opacity 0.4s ease;

    z-index: 2000;
  }

  /* MENU (estado aberto) */
  .nav.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    gap: 28px;
  }

  .nav-link {
    font-size: 18px;
  }

  /* Nome da loja não aparece no mobile */
  .brand-name {
    display: none !important;
  }
}


@media (max-width: 480px) {

  .main {
    height: 70vh;   /* antes era 100vh */
  }

  .slide,
  .slide .image {
    height: 100%;
  }
  
  .header-container {
    height: 64px;
  }

  .logo-img {
    height: 40px;
  }

  .image-data {
    width: 90%;
  }

  .image-data h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  .image-data span {
    font-size: 11px;
  }

  a.button {
    padding: 10px 18px;
    font-size: 14px;
  }
   .piece-name {
    font-size: 20px;
  }

  .piece-overlay {
    padding: 28px 16px;
  }


  /* 🔥 AJUSTE DO TEXTO NO TOPO */
  .piece-overlay {
    padding-top: 70px;        /* 👈 desce menos */
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.28),
      rgba(0, 0, 0, 0.18),
      rgba(0, 0, 0, 0.28)
    );
  }

  .piece-name {
    font-size: 18px;          
    padding: 8px 16px;        
    border-radius: 20px;      
    background: rgba(10, 186, 181, 0.25);
    backdrop-filter: blur(6px);
    letter-spacing: 0.8px;
  }
}

@media (max-width: 992px) {

  .nav-list {
    gap: 20px;
  }

  .image-data h2 {
    font-size: 38px;
  }

  .container {
    padding: 0 16px;
  }

  .footer-main-content {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
/* ============================================
   FOOTER MOBILE
============================================ */
@media (max-width: 768px) {

  .footer {
    padding: 30px 0 20px;
    text-align: center;
  }

  .footer-main-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-brand .logo {
    justify-content: center;
    height: auto;
  }

  .footer-brand-name {
    margin-left: 0;
    margin-top: 8px;
  }

  .footer-description {
    margin: 20px auto;
    max-width: 100%;
    font-size: 13px;
    line-height: 1.8;
  }

  .footer-title {
    margin-bottom: 10px;
  }

  .footer-list {
    padding: 0;
  }

  .footer-list li {
    margin-bottom: 8px;
  }

  .contact-info p {
    justify-content: center;
  }

  .whatsapp-footer-btn {
    max-width: 260px;
    margin: 15px auto 0;
  }
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

/* LOGO */
.preloader-logo {
  width: 160px;
  max-width: 70%;
  position: relative;
  animation: logo-pulse 2.5s ease-in-out infinite;
}

/* brilho passando */
.preloader-logo::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(10, 186, 181, 0.9),
    transparent
  );

  transform: translateX(-100%);
  animation: logo-shine 2.5s ease-in-out infinite;
  mix-blend-mode: screen;
}

/* animação de leve pulsar */
@keyframes logo-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.03);
    opacity: 1;
  }
}

/* animação de brilho */
@keyframes logo-shine {
  0% {
    transform: translateX(-100%);
  }
  60% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(100%);
  }
}
