@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Code:ital,wght@0,300..800;1,300..800&family=Great+Vibes&display=swap');

/* --- Root Variables --- */
:root {
  --cor-primaria: #e63946;
  --cor-secundaria: #a29bfe;
  --cor-fundo-claro: #f2f2f2;
  --cor-texto-principal: #1e1e1c;
  --cor-texto-suave: #4d4d4d;
  --cor-fundo-escuro: #1a1a1a;
  --cor-branco: #ffffff;
  --cor-dourado: #f9c784;
  --cor-cinza-claro: #eee;
  --cor-cinza-escuro: #333;
  --cor-hover: #ff6347;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  padding-top: 80px;
  background-color: whitesmoke;
  font-family: "Google Sans Code", monospace;
  color: var(--cor-texto-principal);
}

.great-vibes {
  font-family: "Great Vibes", cursive;
}

.google-sans {
  font-family: "Google Sans Code", monospace;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Header / Topo --- */
.topo {
  background-color: var(--cor-branco);
  border-bottom: 1px solid var(--cor-cinza-claro);
  padding: 15px 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  font-weight: 700;
  white-space: nowrap;
}

.logo a {
  text-decoration: none;
  color: var(--cor-cinza-escuro);
}

.header-icons-left {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 10;
}

.icon-img {
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease-in-out;
}

.icon-img:hover {
  transform: scale(1.1);
}

.cart-wrapper {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--cor-primaria);
  color: var(--cor-branco);
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 50%;
  display: inline-block;
  font-weight: bold;
}

.menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 25px;
}

.menu-container {
  margin-left: auto;
}

.menu a {
  text-decoration: none;
  color: var(--cor-cinza-escuro);
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

.menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--cor-primaria);
  transition: width 0.3s ease;
}

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

.menu a.active {
  color: var(--cor-primaria);
}

/* --- Botões --- */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--cor-texto-principal);
  color: var(--cor-branco);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.1s ease, background-color 0.3s, color 0.3s, border-color 0.3s;
}

.btn:active {
  transform: scale(0.95);
}

.btn:hover {
  background-color: var(--cor-branco);
  color: var(--cor-primaria);
  border: 1px solid var(--cor-primaria);
}

/* --- Hero --- */
.hero {
  background: url("Hero.png") center/cover no-repeat;
  height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: black(--cor-primaria);
}

.hero-content {
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
  padding: 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-content h2 {
  font-size: 2em;
  margin-bottom: 5px;
}

/* --- Headline & Carousel --- */
.headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 0px;
}

.headline h1 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.subhead {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
}

.carousel {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  width: 100%;
}

.carousel h1 {
  flex: 0 0 100%;
  font-size: 1rem; /* Tamanho da fonte ajustado */
  margin: 0 auto;
  text-align: center;
  scroll-snap-align: center;
  padding: 0 20px;
  max-width: 90%;
  font-family: Great Vibes;
  background: radial-gradient(circle, white, whitesmoke);
}
  color: lav
}

/* Media query para telas menores (celulares) */
@media (max-width: 768px) {
  .carousel h1 {
    font-size: 1.5rem; /* Tamanho da fonte menor para dispositivos móveis */
  }
}

/* Media query para telas maiores (desktops) */
@media (min-width: 769px) {
  .carousel h1 {
    font-size: 2.5rem; /* Tamanho da fonte maior para desktops */
  }
}


.indicators {
  display: flex;
  gap: 5px;
  margin-top: 10px;
}

.indicators span {
  width: 12px;
  height: 3px;
  background: #ccc;
  display: block;
  border-radius: 2px;
}

.carousel:has(h1:nth-child(1):target) ~ .indicators span:nth-child(1),
.carousel:has(h1:nth-child(2):target) ~ .indicators span:nth-child(2),
.carousel:has(h1:nth-child(3):target) ~ .indicators span:nth-child(3) {
  background: black;
}

/* --- Seções --- */
.secao-branca {
  background-color: var(--cor-branco);
  padding: 50px 20px;
  text-align: center;
}

.secao-cinza,
.secao-cinza-escura {
  background-color: #121212;
  color: var(--cor-branco);
  padding: 50px 20px;
  text-align: center;
}

/* --- Carrossel de imagens --- */
.carrossel-container {
  margin: 40px auto;
  max-width: 90%;
}

.carrossel {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
}

.carrossel img {
  width: 180px;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s;
}

.carrossel img:hover {
  transform: scale(1.15);
}

/* --- Seção de logos com texto --- */
.logo-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #121212;
  color: var(--cor-branco);
  padding: 4rem 2rem;
  flex-wrap: wrap;
  gap: 2rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.logo-text {
  max-width: 500px;
  margin: 0;
  padding: 0;
  text-align: left;
  color: var(--cor-branco);
}

.logo-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.logo-text p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  font-family: "Google Sans Code", monospace;
}

.logo-image img {
  max-width: 100%;
  width: 500px;
  height: auto;
  border-radius: 10px;
}

/* --- Blog cards --- */
.blog-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 0;
}

.blog-card {
  max-width: 300px;
  padding: 1rem;
  border-radius: 1rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-icon {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #ccc;
  margin-bottom: 1rem;
}

.blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.blog-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* --- Loja estilizada --- */
.loja-estilizada {
  background: linear-gradient(to bottom, #1a1a1a, #000);
  position: relative;
  overflow: hidden;
  color: var(--cor-branco);
  text-align: center;
  padding: 4rem 2rem;
}

.loja-estilizada::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
}

.icon-shop {
  display: block;
  font-size: 3rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%      { transform: scale(1.1); opacity: 0.8; }
}

.loja-estilizada h2 {
  font-size: 2.5rem;
  margin-top: 0;
}

.loja-estilizada .btn {
  background-color: var(--cor-fundo-claro);
  color: var(--cor-texto-principal);
}

.loja-estilizada .btn:hover {
  background-color: var(--cor-branco);
  border-color: var(--cor-branco);
}

/* --- Seção de contato --- */
.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 4rem 2rem;
  background: #0d0d0d;
}

.insta-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.insta-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  cursor: pointer;
}

.insta-wrapper:hover .insta-icon {
  filter: grayscale(0%);
}

.insta-flag {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%) translateX(-0.5rem);
  background: linear-gradient(to right, #ed2e38, #ff99cc);
  color: var(--cor-branco);
  font-family: 'Great Vibes', cursive;
  font-size: 1.2rem;
  padding: 0.4rem 0.8rem;
  border-radius: 5px 20px 20px 5px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.insta-wrapper:hover .insta-flag {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.email-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.email-text {
  font-size: 1.5rem;
  font-family: 'Great Vibes', cursive;
  color: var(--cor-branco);
  text-align: center;
}

.email-button {
  background-color: var(--cor-primaria);
  color: var(--cor-branco);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.email-button:hover {
  background-color: #ff4d5a;
}

/* --- Media Queries --- */

@media (max-width: 992px) {
  .logo {
    font-size: 1.6rem;
  }
  .menu {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .topo {
    padding: 10px 15px;
    position: static;
    align-items: flex-start;
  }
  
  .header-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  
  .logo {
    position: static;
    transform: none;
    width: 100%;
    text-align: center;
    order: -1;
  }

  .header-icons-left {
    justify-content: space-around;
    width: 100%;
    order: 1;
  }

  .menu-container {
    width: 100%;
    margin-left: 0;
    order: 2;
  }

  .menu {
    display: grid;
    grid-template-columns: repeat(3, auto);
    grid-auto-rows: auto;
    gap: 8px 20px;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
  }

  .menu a {
    font-size: 0.9rem;
    padding: 5px;
  }
  
  .menu a::after {
    display: none;
  }
  
  .menu li {
    position: relative;
    list-style: none;
    padding: 0 8px;
  }

  .menu li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background-color: var(--cor-cinza-escuro);
  }

  .menu li:nth-child(3n)::after, 
  .menu li:last-child::after {
    content: none;
  }

  .logo-section,
  .contact-section {
    flex-direction: column;
    text-align: center;
  }

  .logo-text,
  .logo-image img {
    width: 100%;
    height: auto;
    max-width: none;
  }
  
  .contact-section {
    gap: 1rem;
  }

  .menu {
    flex-direction: column;
    gap: 24px;
    margin-top: 10px;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .insta-flag {
    font-size: 1rem;
    max-width: 120px;
  }

  .email-text {
    font-size: 1.2rem;
  }
}
