@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    color: #fff;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
  background-color: #000;
  padding: 15px 40px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.header-content {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header img {
  cursor: pointer;
  transition: transform 0.3s ease;
}

header img:hover {
  transform: scale(1.05);
}

.nav-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.nav-top ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin-bottom: 8px;
}

.nav-top a {
  text-decoration: none;
  color: #FD5000;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.nav-top a:hover {
  color: #fff;
}

.nav-bottom ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-bottom a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-bottom a:hover {
  color: #FD5000;
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
    width: 25px;
  height: 3px;
  background-color: #FD5000;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 900px) {
    .nav-container {
        display: none;
        flex-direction: column;
    align-items: flex-start;
    background-color: #000;
    width: 100%;
    position: absolute;
    top: 80px;
    left: 0;
    padding: 20px;
    border-top: 2px solid #FD5000;
}

.nav-container.active {
    display: flex;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .nav-top ul,
  .nav-bottom ul {
    flex-direction: column;
    gap: 15px;
}

.nav-top a,
.nav-bottom a {
    font-size: 1rem;
}

.hamburger {
    display: flex;
  }
}

main {
    padding-top: 130px;
}

.hero {
    width: 100%;
    background-color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 0px;
}

.hero-banner {
    width: 100%;
    overflow: hidden;
}

.hero-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: contrast(105%) brightness(95%);
    transition: transform 0.6s ease;
}

.hero-banner img:hover {
  transform: scale(1.03);
}

.hero-text {
    margin-top: 50px;
    margin-bottom: 60px;
    color: #fff;
    max-width: 800px;
}

.hero-text h2 {
    font-size: 2.3rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #FD5000;
    letter-spacing: 1.5px;
}

.hero-text p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-text button {
    background-color: #FD5000;
    color: #fff;
    border: none;
  padding: 14px 45px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px 0 10px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-text button:hover {
    background-color: transparent;
  border: 2px solid #FD5000;
  color: #FD5000;
}

.products {
  width: 100%;
  background: #000;
  padding: 60px 40px 120px;
  text-align: center;
}

.products h2 {
  color: #FD5000;
  font-size: 2.2rem;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  position: relative;
}

.products h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #FD5000;
  margin: 12px auto 0;
  border-radius: 3px;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 45px;
  justify-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.product-item {
  background: rgba(13, 13, 13, 0.85);
  border-radius: 18px;
  padding: 18px;
  transition: all 0.35s ease;
  cursor: pointer;
  max-width: 250px;
  position: relative;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  backdrop-filter: blur(4px);
}

.product-image {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: 12px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease, transform 0.4s ease;
  border-radius: 12px;
}

.product-image .img-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.product-item:hover .img-default {
  opacity: 0;
  transform: scale(1.05);
}

.product-item:hover .img-hover {
  opacity: 1;
  transform: scale(1.02);
}

.product-item h3 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 18px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.buy-btn {
  background-color: #FD5000 !important;
  color: #fff !important;
  border: 2px solid transparent !important;
  padding: 12px 30px !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  border-radius: 10px 0 10px 0 !important;
  cursor: pointer;
  transition: all 0.3s ease !important;
  width: 80%;
  margin: 0 auto;
}

.buy-btn:hover {
  background-color: transparent !important;
  border: 2px solid #FD5000 !important;
  color: #FD5000 !important;
  transform: scale(1.03);
}

.buy-btn:active {
  transform: scale(0.97);
}

@media (max-width: 1024px) {
  .products {
    padding: 50px 30px 100px;
  }

  .products h2 {
    font-size: 1.8rem;
  }

  .product-list {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .products {
    padding: 40px 20px 80px;
  }

  .products h2 {
    font-size: 1.5rem;
    margin-bottom: 45px;
  }

  .product-item {
    max-width: 210px;
    padding: 15px;
  }

  .product-image {
    height: 220px;
  }

  .buy-btn {
    padding: 10px 25px !important;
    font-size: 0.9rem !important;
    width: 90%;
  }
}

@media (max-width: 480px) {
  .product-item {
    max-width: 100%;
  }

  .product-image {
    height: 200px;
  }
}


.tasha-tracie-section {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.tasha-block {
    width: 100%;
    max-width: 1100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.tasha-img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
  filter: brightness(95%) contrast(105%);
  transition: transform 0.4s ease, filter 0.3s ease;
}

.tasha-img:hover {
    transform: scale(1.02);
    filter: brightness(105%) contrast(110%);
}

.text-block h2 {
  color: #FD5000;
  font-size: 2.2rem;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1.5px;
}

.text-block p {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.quote-block blockquote {
    font-size: 1.4rem;
    color: #fff;
  font-style: italic;
  border-left: 4px solid #FD5000;
  padding-left: 18px;
  margin: 0 auto;
  max-width: 700px;
}

.logotashaetracie {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
  background: #000;
  margin-top: 50px;
}

.logotashaetracie img {
  width: 300px;
  height: auto;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.logotashaetracie img:hover {
  transform: scale(1.05);
}


@media (max-width: 768px) {
  .tasha-img {
    width: 90%;
  }
  .text-block h2 {
      font-size: 1.8rem;
  }
  .quote-block blockquote {
    font-size: 1.1rem;
  }
}

.marvel-collection {
    width: 100%;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  color: #fff;
}

.marvel-content {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.marvel-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.marvel-content img {
    width: 100%;
    margin-left: -5%;
    object-fit: cover;
    filter: contrast(105%) brightness(95%);
    transition: transform 0.6s ease;
}

.marvel-content h2 {
    font-size: 2.3rem;
    color: #FD5000;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 15px;
}

.marvel-content h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #FD5000;
  margin: 12px auto 0;
  border-radius: 3px;
}

.marvel-content p {
    font-size: 1.1rem;
  color: #ddd;
  line-height: 1.6;
  max-width: 700px;
}

.marvel-btn {
  background-color: #FD5000;
  color: #fff;
  border: none;
  padding: 14px 45px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px 0 10px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.marvel-btn:hover {
  background-color: transparent;
  border: 2px solid #FD5000;
  color: #FD5000;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .marvel-content img {
      max-width: 100%;
  }
  
  .marvel-content h2 {
      font-size: 1.6rem;
  }
  
  .marvel-content p {
    font-size: 1rem;
  }

  .marvel-btn {
    padding: 12px 35px;
  }
}

.carioca-collection {
  position: relative;
  text-align: center;
  padding: 100px 0;
  background-image: url("assets/Times/backgroundfutebol.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}

.carioca-collection h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 1px;
}

.carousel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  justify-content: center;
  padding: 0 40px;
}

.carousel-item {
  background: rgba(255, 255, 255, 0.556);
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  backdrop-filter: blur(8px);
  border-radius: 14px;
}

.carousel-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
  border-radius: 14px;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
}

.carousel-item img:hover {
  transform: scale(1.03);
}

.carousel-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #111;
  font-weight: 600;
}

.buy-btn {
    background-color: #FD5000;
    color: #fff;
    border: none;
    padding: 14px 45px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px 0 10px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.buy-btn:hover {
  background-color: transparent;
  border: 2px solid #FD5000;
  color: #000000;
}

@media (max-width: 1024px) {
    .carousel {
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .carousel {
      grid-template-columns: 1fr;
    }
  .carousel-item img {
    height: 220px;
}
}

.collabs-section {
    position: relative;
    width: 100%;
    height: 90vh;
  overflow: hidden;
  background-color: #000;
  color: #fff;
}

.collab-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.collab-slide.active {
    opacity: 1;
  z-index: 1;
}

.collab-slide img {
  width: 100%;
  height: 100%;
  object-fit: initial;
  filter: brightness(65%) contrast(110%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.collab-slide-content {
    position: relative;
  z-index: 2;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}

.collab-slide-content h3 {
    font-size: 2.4rem;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ff5a00;
    text-align: left;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
  font-weight: 700;
}

.collab-slide-content p {
    font-size: 1rem;
    color: #e0e0e0;
    margin-bottom: 20px;
    line-height: 1.6;
  text-align: left;
  max-width: 480px;
}

.collab-slide-content .buy-btn {
  background-color: #FD5000;
  color: #fff;
  border: none;
  padding: 6px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 6px 0 6px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  width: fit-content;
  margin-top: 8px;
}

.collab-slide-content .buy-btn:hover {
  background-color: transparent;
  border: 1.5px solid #FD5000;
  color: #FD5000;
  transform: translateY(-2px);
}

.collab-slide-content {
  position: relative;
  z-index: 2;
  text-align: left;
  top: 50%;
  transform: translateY(-50%);
  max-width: 600px;
  margin-left: 5%;
}

@media (max-width: 768px) {
    .collab-slide-content {
    top: 55%;
    transform: translateY(-50%);
    margin-left: 8%;
}

.collab-slide-content h3 {
    font-size: 1.5rem;
}

  .collab-slide-content p {
    font-size: 0.95rem;
  }
  
  .collab-slide-content .buy-btn {
    padding: 8px 22px;
    font-size: 0.85rem;
  }
}


footer {
    background: #000;
    padding: 40px 20px;
      text-align: center;
      color: #fff;
      position: relative;
    }
    
    .footer-line {
        height: 3px;
      width: 100%;
      background: #FD5000;
      position: absolute;
      top: 0;
      left: 0;
    }
  
  .back-line {
      height: 3px;
      width: 100%;
      background: #FD5000;
      position: absolute;
      bottom: 0;
      left: 0;
    }
  
  .footer-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      margin-top: 10px;
    }
  
  .footer-content .social {
      display: flex;
      gap: 25px;
      justify-content: center;
    }
  
  .footer-content .social a {
      color: #fff;
      transition: color 0.3s, transform 0.3s;
  }
  
  .footer-content .social a:hover {
      color: #FD5000;
      transform: scale(1.1);
    }
    
    .footer-content p {
        font-size: 0.95rem;
      opacity: 0.85;
      letter-spacing: 0.5px;
    }
  
    .footer-content img {
      margin-top: 5px;
      opacity: 0.9;
      transition: opacity 0.3s ease;
    }
    
    .footer-content img:hover {
        opacity: 1;
  }

        .header-line {
          width: 100%;
          height: 3px;
          background-color: #FD5000;
          margin-top: 10px;
          border-radius: 3px;
  }