:root {
  --cor-primaria: #121212;
  --cor-secundaria: #ff2f72;
  --texto-claro: #fff;
  --gradiente: linear-gradient(135deg, #ff2f72 0%, #ff7b00 100%);
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #f9f9f9;
  color: #333;
}

/* ====== HEADER ====== */
/* ====== HEADER ELEGANTE ====== */
/* ====== HEADER ELEGANTE COM FILETE DOURADO ====== */
/* ====== HEADER ELEGANTE COM FILETE DOURADO E LOGO ILUMINADO ====== */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.8rem;
  position: sticky;
  top: 0;
  z-index: 100;

  /* Gradiente do mais escuro (0.95) para o mais transparente (0.75) */
  background: linear-gradient(
    to bottom,
    rgba(18, 18, 18, 1.0) 0%,
    rgba(18, 18, 18, 0.90) 40%,
    rgba(18, 18, 18, 0.65) 100%
  );

  backdrop-filter: blur(14px);
  border-bottom: 2px solid transparent;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}


/* ===== FILETE DOURADO PULSANTE ===== */
header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(255, 215, 0, 0.3),
    rgba(255, 215, 0, 0.9),
    rgba(255, 215, 0, 0.3)
  );
  background-size: 200% 100%;
  animation: brilhoHeader 8s linear infinite;
  filter: blur(0.5px);
}

@keyframes brilhoHeader {
  0% { background-position: 0% 0; opacity: 0.8; }
  50% { background-position: 100% 0; opacity: 1; }
  100% { background-position: 0% 0; opacity: 0.8; }
}

header:hover {
  background: rgba(18, 18, 18, 0.9);
  box-shadow: 0 6px 40px rgba(255, 215, 0, 0.15);
}

/* ===== MARCA / LOGOTIPO ===== */
header .brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  color: var(--texto-claro);
}

/* logotipo com reflexo dourado e brilho sincronizado */
header .brand img {
  width: 230px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: pulsarLogo 8s ease-in-out infinite;
}

header .brand img::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  transform: skewX(-20deg);
  animation: brilhoLogo 8s ease-in-out infinite;
  pointer-events: none;
}

/* sincroniza o reflexo do logo com o filete inferior */
@keyframes brilhoLogo {
  0% { left: -75%; opacity: 0; }
  45% { opacity: 0; }
  50% { left: 125%; opacity: 1; }
  55% { opacity: 0; }
  100% { left: 125%; opacity: 0; }
}

/* pulsação de brilho no contorno do logo */
@keyframes pulsarLogo {
  0%, 100% { box-shadow: 0 0 12px rgba(255, 215, 0, 0.4); }
  50% { box-shadow: 0 0 18px rgba(255, 215, 0, 0.7); }
}

header .brand img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
}

/* ===== NAVEGAÇÃO ===== */
header nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

header nav a {
  position: relative;
  color: var(--texto-claro);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

header nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, #ffecb3);
  transition: width 0.3s ease;
}

header nav a:hover {
  color: #ffecb3;
}

header nav a:hover::after {
  width: 100%;
}

/* ===== ÍCONE DO CARRINHO ===== */
header nav img {
  height: 38px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

header nav img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.5));
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  header nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}


/* ====== BANNER / CARROSSEL ====== */
.banner {
  position: relative;
  height: 340px;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.banner img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.banner img.active {
  opacity: 1;
}

/* ====== TEXTO FLUTUANTE (GLASSMORPHISM) ====== */
.banner-text {
  position: absolute;
  bottom: 12%;
  left: 5%;
  color: var(--texto-claro);
  font-size: 1.6rem;
  font-weight: 600;
  padding: 1rem 1.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-shadow: 0 4px 10px rgba(0,0,0,0.6);
  animation: slideIn 1s ease;
}

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

/* ====== SETAS DE NAVEGAÇÃO ====== */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(6px);
  color: var(--texto-claro);
  font-size: 1.8rem;
  padding: .4rem .8rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all .3s ease;
  z-index: 10;
  user-select: none;
}

.arrow:hover {
  background: rgba(255,255,255,0.5);
  color: var(--cor-primaria);
  box-shadow: 0 0 20px rgba(255,255,255,0.5);
}

.arrow.left { left: 15px; }
.arrow.right { right: 15px; }

/* ====== CONTEÚDO PRINCIPAL ====== */
.container {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 0 1rem;
}

h2 {
  text-align: center;
  color: #222;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

/* ====== GRID DE PRODUTOS ====== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
  padding: 1rem;
}

/* ===== CARD DOURADO ===== */
.card {
  position: relative;
  background: linear-gradient(135deg, #fffaf0 0%, #fdf6e3 100%);
  border-radius: 22px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 215, 0, 0.25);
  transition: transform .5s ease, box-shadow .5s ease;
  max-width: 550px;
  height: 800px;
  margin: 0 auto;
}

/* Reflexo dourado permanente (loop suave) */
.card::after {
  content: "";
  position: absolute;
  top: -100%;
  left: -150%;
  width: 200%;
  height: 300%;
  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(255, 223, 100, 0.3) 40%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 223, 100, 0.3) 60%,
    transparent 80%
  );
  transform: rotate(25deg);
  opacity: 0.8;
  animation: brilhoDouradoLoop 6s linear infinite;
  pointer-events: none;
}

@keyframes brilhoDouradoLoop {
  0% { transform: translateX(-100%) rotate(25deg); opacity: 0; }
  10% { opacity: .9; }
  50% { transform: translateX(100%) rotate(25deg); opacity: .8; }
  90% { opacity: 0; }
  100% { transform: translateX(-100%) rotate(25deg); opacity: 0; }
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 45px rgba(255, 200, 60, 0.25);
}

.card img {
  width: 100%;
  height: 65%;
  object-fit: cover;
  transition: transform .5s ease, filter .5s ease;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
}

.card:hover img {
  transform: scale(1.05);
  filter: brightness(1.08);
}

.card strong {
  display: block;
  margin-top: 1rem;
  font-size: 1.25rem;
  color: #2b2100;
  letter-spacing: 0.4px;
  font-weight: 600;
}

.badge {
  background: linear-gradient(135deg, #d4af37 0%, #ffecb3 100%);
  color: #3b2a00;
  padding: .4rem .9rem;
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 600;
  display: inline-block;
  margin-top: .3rem;
  box-shadow: 0 3px 6px rgba(212, 175, 55, 0.3);
}

.card form {
  margin-top: 1.2rem;
}

.card .btn {
  background: linear-gradient(135deg, #b8860b, #ffcc33);
  color: #fff;
  border: none;
  padding: .75rem 1.6rem;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: all .3s ease;
  box-shadow: 0 4px 14px rgba(184, 134, 11, 0.3);
}

.card .btn:hover {
  background: linear-gradient(135deg, #ffd700, #ffbf00);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.45);
  transform: translateY(-3px);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
  .card {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .card {
    height: 480px;
  }
}

@media (max-width: 480px) {
  .card {
    height: auto;
  }
  .card img {
    height: 260px;
  }
}




/* ====== FOOTER ====== */
footer {
  text-align: center;
  margin: 3rem 0 1rem;
  font-size: .9rem;
  color: #555;
}

/* ====== RESPONSIVIDADE ====== */
@media (max-width: 768px) {
  header {
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem;
  }
  header nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  .banner-text {
    font-size: 1.2rem;
    left: 8%;
    right: 8%;
    text-align: center;
  }
  .arrow {
    font-size: 1.4rem;
    padding: .3rem .6rem;
  }
}

.cor-bolinha:hover {
  transform: scale(1.15);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

/* ===========================
   FAQ - Estilo Feminino Elegante
   =========================== */
#faq {
  max-width: 900px;
  margin: 3rem auto;
  padding: 2.5rem 2rem;
  background: linear-gradient(180deg, #fffdfb 0%, #fff8f2 100%);
  border-radius: 16px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  font-family: "Playfair Display", "Poppins", serif;
  line-height: 1.7;
  transition: all 0.3s ease-in-out;
  border: 1px solid #f1e3d3;
}

/* Título principal */
#faq h2 {
  text-align: center;
  color: #7c5533;
  font-size: 1.8rem;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  position: relative;
}
#faq h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #c6a36b, #e6c48f);
  display: block;
  margin: 0.8rem auto 0 auto;
  border-radius: 2px;
}

/* Perguntas */
#faq h3 {
  font-size: 1.15rem;
  color: #5b3d25;
  margin-bottom: 0.4rem;
  cursor: pointer;
  position: relative;
  padding-left: 25px;
}
#faq h3::before {
  content: "❀";
  position: absolute;
  left: 0;
  top: -1px;
  font-size: 1rem;
  color: #c6a36b;
}

/* Respostas */
#faq p {
  color: #555;
  background: #fffaf5;
  border-left: 3px solid #e4c69a;
  padding: 0.8rem 1rem;
  border-radius: 6px;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  transition: background 0.3s ease;
}
#faq p:hover {
  background: #fff5e6;
}

/* Efeito sutil ao passar o mouse */
#faq div:hover h3 {
  color: #b17a46;
  transition: color 0.3s ease;
}

/* Responsividade */
@media (max-width: 600px) {
  #faq {
    padding: 1.5rem;
  }
  #faq h2 {
    font-size: 1.5rem;
  }
  #faq h3 {
    font-size: 1.05rem;
  }
}

/* ================================
   FOOTER HANNY ZOE - Luxo Feminino
   ================================ */
.footer-hannyzoe {
  background-color: #0b0b0b;
  color: #f5e1b9;
  padding: 3rem 1.5rem;
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
}

.footer-hannyzoe a {
    text-decoration:none;
    color:#fff;
}

/* Brilho radial sutil */
.footer-hannyzoe::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top center, rgba(198,163,107,0.25) 0%, transparent 70%);
  pointer-events: none;
}

/* Faixa dourada animada no topo */
.footer-hannyzoe::after {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d4af37, #e6c48f, transparent);
  animation: goldLine 5s infinite linear;
  opacity: 0.8;
}

@keyframes goldLine {
  0% { left: -50%; }
  100% { left: 50%; }
}

/* Estrutura principal */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
}

.footer-logo {
  width: 90px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 6px rgba(255,215,120,0.2));
}

.footer-col h3 {
  color: #f5e1b9;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  position: relative;
}

.footer-col h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: linear-gradient(to right, #c6a36b, #e6c48f);
  margin-top: 5px;
  border-radius: 2px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
  color: #e8e6d2;
}

.footer-col ul li i {
  color: #d8b77d;
  margin-right: 8px;
}

.footer-col a {
  color: #f5e1b9;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #ffffff;
}

/* Redes sociais */
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #c6a36b;
  color: #0b0b0b;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-right: 8px;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-links a:hover {
  background: #e6c48f;
  transform: scale(1.1);
}

/* Rodapé inferior */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 3rem;
  text-align: center;
  padding-top: 1rem;
  font-size: 0.9rem;
  color: #d8c9a7;
  animation: fadeIn 1.8s ease-in-out;
}

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

/* =======================
   Gladius Code - Assinatura
   ======================= */
.dev {
  margin-top: 1.5rem;
  text-align: center;
}

.gladius-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #e6c48f;
  position: relative;
  overflow: hidden;
}

.gladius-logo img {
  width: 90px;
  height: auto;
  margin-bottom: 0.4rem;
  filter: drop-shadow(0 0 6px rgba(255, 215, 120, 0.25));
  z-index: 2;
}

/* Texto dourado com brilho */
.gladius-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: #e6c48f;
  text-shadow: 0 0 8px rgba(255, 215, 120, 0.2);
  z-index: 2;
}

/* Brilho dourado animado */
.gladius-logo .shine {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  animation: shineMove 3s infinite linear;
  z-index: 1;
}

@keyframes shineMove {
  0% { left: -75%; }
  50% { left: 120%; }
  100% { left: 120%; }
}

/* Hover elegante */
.gladius-logo:hover .gladius-text {
  color: #fff;
  transition: color 0.3s ease;
}

.gladius-logo:hover img {
  filter: drop-shadow(0 0 12px rgba(255, 230, 150, 0.5));
  transition: filter 0.3s ease;
}

/* Responsivo */
@media (max-width: 600px) {
  .footer-hannyzoe {
    text-align: center;
  }
  .social-links a {
    margin: 0 5px;
  }
  .gladius-logo img {
    width: 70px;
  }
  .gladius-text {
    font-size: 0.85rem;
  }
}

