* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #000000;
  color: #f1f1f1;
}

/* Animações */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

/* Container principal */
.container {
  max-width: 1200px; /* largura máxima */
  margin: 0 auto; /* centraliza */
  padding: 20px;
  animation: fadeIn 1s ease-out;
}

.header {
  text-align: center;
  margin-bottom: 30px;
}

.logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.topo-logo {
  width: 115px;
  height: 115px;
  border-radius: 50%;
  background: linear-gradient(45deg, #333, #000);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  overflow: hidden;
  margin-top: 2px;
}

.topo-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-text {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: linear-gradient(45deg, #fff, #bbb, #fff);
  background-clip: text; /* padrão */
  -webkit-background-clip: text; /* Chrome, Edge, Safari */
  -webkit-text-fill-color: transparent;
  animation: pulse 2s infinite;
}

.slogan {
  font-size: 1rem;
  opacity: 0.8;
}

/* Seção de botões */
.buttons-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.9rem;
  max-width: 500px;
  margin: 0 auto;
  animation: fadeIn 1.5s ease-out;
}

/* Botões */
/* .btn dentro */
.btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 85%;

  padding: 5px 25px;
  border: none;
  border-radius: 50px;

  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;

  cursor: pointer;
  transition: all 0.3s ease;
}

.buttons-container i {
  font-size: 1.5rem;
}

.btn-catalogo-zap {
  margin-top: 10px;
  max-width: 350px;
  padding: 10px 25px;
}

.selecione-um-tamanho {
  font-size: 12px;
  margin-bottom: -10px;
}

/* Efeito Hover */
.btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.btn:hover::after {
  opacity: 1;
}
/* Efeito Hover */

.btn-whatsapp {
  background-color: #25d366;
  color: #000;
}

.btn-instagram {
  background: linear-gradient(
    135deg,
    #feda75,
    #fa7e1e,
    #d62976,
    #962fbf,
    #4f5bd5
  );
  color: #fff;
}

.btn-catalogo {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-google {
  background-color: #4285f4;
  color: white;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Banner rotativo (controle via JS) - AJUSTADO */
.banner-container {
  width: 100%; /* ocupa 100% da largura do catalogo-interface-wrapper */
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

/* Imagem */
.banner-slide img {
  width: auto; /* não força largura */
  max-width: 100%; /* respeita o container */
  height: auto;
  display: block;
  border-radius: 10px;
  margin-top: 15px;
}

.banner-slides {
  display: flex;
  width: 300%; /* 3 banners, cada com 100% */
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.banner-slide {
  width: 33.333%;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.produtos-text {
  text-align: center;
  margin-bottom: 15px;
}

/* Catálogo */
.catalogo {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  z-index: 1000;
  overflow-y: auto;
}

.catalogo-interface-wrapper {
  max-width: 1200px; /* largura máxima */
  margin: 0 auto; /* centraliza */
  padding: 0 20px 20px;
}

.catalogo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #333;
}

.close-catalogo {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Slider produtos */
.slider {
  position: relative;
  max-width: 100%;
  margin: 20px auto;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
}

.product-image {
  width: 100%;
  aspect-ratio: 3 / 4; /* ideal para produtos */
  max-width: 500px; /* trava no desktop */
  margin: 0 auto 20px; /* 🔥 centraliza no desktop */
  background-color: #0f0f0f;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
}

.product-info {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.product-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.product-description {
  opacity: 0.8;
  margin-bottom: 15px;
}

.size-selector {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 15px 0;
}

.size-btn {
  padding: 8px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: bold;
  color: #000;
  position: relative;
}


.size-btn.selected {
  transform: scale(1.1);
  background: #000;
  color: #00ff88;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.4),
    0 0 0 2px rgba(255, 255, 255, 0.7);
}


.size-btn.selected::after {
  content: "✔";
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  color: #00ff88 !important;
  opacity: 1 !important;
  text-shadow:
    0 0 6px rgba(0, 255, 136, 0.9),
    0 0 12px rgba(0, 255, 136, 0.6);
  z-index: 9999;
  pointer-events: none;
}

.size-p {
  background-color: #ea1d1d;
}

.size-m {
  background-color: #4242fa;
}

.size-g {
  background-color: #d0d010;
}

.size-gg {
  background-color: #d09010;
}

.slider-nav {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  background-color: #333;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.slider-dot.active {
  background-color: #ffffff;
}

/* COMEÇO DO ESTILO DA SECTION --> LINK1 */
.container-link1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

section .div-img-link1 {
  max-width: 510px;
}

section .div-img-link1 img {
  width: 100%;
  transition: 0.3s ease;
}

section .div-img-link1 img:hover {
  transform: translateY(-2px);
}

.bnt-rodape-modal {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  margin-bottom: 15px;
}

.bnt-rodape-modal i {
  font-size: 15px;
}

.bnt-rodape-modal a {
  position: relative;
  font-size: 10px;
  color: white;
  text-decoration: none;
  font-style: italic;
  cursor: pointer;
  padding: 5px 8px;
  border-radius: 15px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: #111;
  overflow: hidden;
  z-index: 1;
}

/* BORDA GIRANDO */
.bnt-rodape-modal a::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: conic-gradient(
    from 0deg,
    transparent,
    white,
    transparent
  );
  border-radius: inherit;
  animation: spin 3s linear infinite;
  z-index: -2;
}

/* FUNDO INTERNO */
.bnt-rodape-modal a::after {
  content: "";
  position: absolute;
  inset: 1px;
  background: #111;
  border-radius: inherit;
  z-index: -1;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Footer e desenvolvedor */
.footer {
  text-align: center;
  margin-top: 30px;
  padding: 2px 0;
  font-size: 0.9rem;
  border-top: 1px solid #333;
}

.opacidade {
  opacity: 0.7;
}

.desenvolvedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.desenvolvedor-logo {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 10px;
}

.desenvolvedor img {
  width: 120px;
  height: auto;
}

/* Evita rolagem horizontal no mobile quando elementos ultrapassam a largura da viewport */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}
