




/* BASE STYLES */
* { margin:0; padding:0; box-sizing:border-box; font-family:'Poppins', sans-serif; }
body { background:hsl(0, 0%, 100%); color:#222; line-height:1.5; }
.container { width:90%; max-width:1200px; margin:0 auto; }

/* HEADER */
header {
  width: 100%;
  background: #2BCBB8;
  transition: all 0.3s ease;
  padding: 25px 0;
  z-index: 10;
  position: relative;
}

header.shrink { padding: 10px 0; }

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}

/* LOGO */
.logo {
  position: relative;
  z-index: 100; 
}

.logo a {
  display: inline-block;
  cursor: pointer;
}

.logo img {
  display: block;
  height: 55px;
  width: auto;
  transition: 0.3s ease;
}

header.shrink .logo img { 
  height: 40px; 
}

/* Make sure menu and hamburger don't cover logo */
.menu, .hamburger {
  position: relative; /* keep z-index default or lower than 100 */
  z-index: 10;
}






/* MENU */
.menu ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  transform: translateX(-20px); /* shifts menu slightly left */
}

.menu ul li {
  position: relative; /* important for dropdown positioning */
}

.menu ul li a {
  color: #fff;
  text-decoration: none;
  padding: 5px 0;
  display: block;
  transition: 0.3s;
}

.menu ul li a:hover {
  color: #ff3ca6;
}

/* DROPDOWN MENU (desktop) */
.menu ul li.dropdown .dropdown-menu {
  display: none; /* hide dropdown by default */
  position: absolute;
  top: 100%; /* below parent */
  left: 0;
  background: #2BCBB8;
  min-width: 170px;
  padding: 0;
  border-radius: 6px;
  z-index: 200;
}

.menu ul li.dropdown .dropdown-menu li a {
  padding: 10px 15px;
}

.menu ul li.dropdown:hover .dropdown-menu {
  display: block; /* show only on hover */
}

/* right-align Contactos dropdown */
.contactos-menu {
  left: auto;
  right: 0;
}

/* HAMBURGER */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
}

/* MOBILE MENU */
@media (max-width:768px) {
  .menu {
    display: none; 
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: #2BCBB8;
  }

  .menu.active { display: flex; } /* toggle with hamburger click */

  .menu ul {
    flex-direction: column;
  }

  .menu ul li {
    width: 100%;
  }

  .menu ul li a {
    padding: 15px 20px;
  }

  /* Mobile dropdowns inside menu */
  .menu ul li.dropdown .dropdown-menu {
    position: relative;
    top: 0;
    left: 0;
    border-radius: 0;
    display: none;
  }

  /* Toggle mobile dropdowns on click */
  .menu ul li.dropdown.active .dropdown-menu {
    display: block;
  }

  .hamburger {
    display: flex;
  }
}


/* HERO */

.hero h1 {
  font-size: 3rem;
  color: #ff3ca6; /* pastel yellow */
  margin-bottom: 10px;
}

.hero {
  height: 80vh;
  background: #fffff8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 40px;



}

.hero h2 {
  font-size: 6rem;
  color: #ff3ca6; /* pastel yellow */
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  color: #0f4c4c; /* dark teal */
  margin-bottom: 20px;
}



/* SHOP */
.shop-section {
  margin-top: 55px;
  padding: 25px 30px;
  border: 2px solid #ff3ca6;
  border-radius: 20px;
  background: #fbffd2;
  display: inline-block;
}

.shop-title {
  font-size: 0.9rem;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #2BCBB8;
}

.shop-btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 10px 25px;
  background: #2BCBB8;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  transition: 0.3s ease;
}
.shop-btn:hover {
  background: #ff3ca6;
  color: #fffde8;
}







.carousel {
  width: 90%;
  overflow: hidden;
  margin: 20px auto;
}

.group {
  display: flex;
  gap: 1em;
  width: max-content;
  animation: scroll 40s linear infinite;
}

.card {
  flex: 0 0 200px;  
  height: 140px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.card img {
  width: 100%; 
  height: 100%;      
  object-fit: contain;  
  display: block;    
}



@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-1280px); } 
}





/* ABOUT */
#about { padding: 100px 20px; }

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: left;
}

.about-text { max-width: 500px; }
.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ff3ca6;
}
.about-text p {
  font-size: 1.2rem;
  color: #0f4c4c;
  line-height: 1.6;
}
.about-image img {
  max-width: 300px;
  width: 100%;
  border-radius: 50%;
}

/* FOOTER */
footer {
  background:#EAF161;
  color:#DA63C2;
  text-align:center;
  padding:20px 0;
  margin-top:40px;
}

/* COISOS PARA SMALLER SCREENS */
@media (max-width: 768px) {
  .hero h2 { font-size: 8vw; }
  .hero p { font-size: 2.5vw; }
  .card { flex: 0 0 30vw; height: 20vw; }
  .shop-section { padding: 4vw 5vw; margin-top: 6vw; }
}

@media (max-width: 480px) {
  .hero h2 { font-size: 10vw; }
  .hero p { font-size: 3.5vw; }
  .card { flex: 0 0 40vw; height: 25vw; }
  .shop-section { padding: 5vw 6vw; margin-top: 8vw; }
}


