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

/* =========================
   BODY
========================= */
body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  color: #111;
  scroll-behavior: smooth;
}

/* =========================
   NAVBAR
========================= */
.navbar {
  background: rgba(0, 0, 0, 0.95) !important;
  padding: 15px 30px;
  backdrop-filter: blur(10px);
}

.navbar-brand {
  font-size: 1.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-link {
  transition: 0.3s;
  margin-left: 10px;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #c59d5f !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: #c59d5f;
  transition: 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

/* =========================
   HERO SECTION
========================= */
.hero {
  height: 100vh;

  background:
    linear-gradient(rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.75)),
    url('./img/banner.jpg');

  background-size: cover;
  background-position: center;

  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  padding: 20px;
}

.hero h1 {
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero p {
  color: #d8d8d8;
  font-size: 1.2rem;
  margin-top: 20px;
}

.hero .btn {
  margin-top: 30px;
  padding: 14px 35px;
  border-radius: 40px;
  transition: 0.3s;
  letter-spacing: 1px;
  font-weight: bold;
}

.hero .btn:hover {
  background: #c59d5f;
  border-color: #c59d5f;
  color: black;
  transform: scale(1.05);
}

/* =========================
   TITULOS
========================= */
h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #c59d5f;
  display: block;
  margin: 12px auto;
  border-radius: 10px;
}

/* =========================
   SECTIONS
========================= */
#produtos,
#masculinos {
  padding-top: 90px;
  padding-bottom: 90px;
}

/* =========================
   CARDS
========================= */
.card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s;
  background: white;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
}

/* =========================
   IMAGENS
========================= */
.card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: 0.4s;
}

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

/* =========================
   CARD BODY
========================= */
.card-body {
  padding: 25px;
}

.card-title {
  font-size: 1.3rem;
  font-weight: bold;
}

.card-text {
  color: #666;
  margin: 15px 0;
  font-size: 0.95rem;
}

/* =========================
   PREÇOS
========================= */
.fw-bold.text-dark {
  color: #c59d5f !important;
  font-size: 1.3rem;
}

/* =========================
   BOTÕES
========================= */
.btn-dark {
  background: #111;
  border: none;
  border-radius: 40px;
  padding: 12px 28px;
  transition: 0.3s;
  letter-spacing: 1px;
}

.btn-dark:hover {
  background: #c59d5f;
  color: black;
  transform: scale(1.03);
}

/* =========================
   FOOTER
========================= */
footer {
  background: #111;
  color: white;
  padding: 20px;
  letter-spacing: 1px;
}

footer p {
  margin: 0;
}

/* =========================
   RESPONSIVIDADE
========================= */
@media (max-width: 992px) {

  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .card img {
    height: 300px;
  }
}

@media (max-width: 768px) {

  .hero {
    height: 90vh;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  h2 {
    font-size: 2rem;
  }

  .card img {
    height: 260px;
  }

  .navbar {
    padding: 12px 20px;
  }
}

@media (max-width: 576px) {

  .navbar-brand {
    font-size: 1.3rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .hero .btn {
    width: 100%;
  }

  .card img {
    height: 220px;
  }

  h2 {
    font-size: 1.7rem;
  }
}
/* =========================
   CAROUSEL SHOWCASE
========================= */

.carro {
  padding: 80px 0;
  background: #f5f5f5;
}

/* CONTAINER */

#carouselExampleDark {
  width: 86%;
  margin: auto;

  border-radius: 25px;
  overflow: hidden;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* IMAGENS */

.carousel-item img {
  height: 450px;
  object-fit: cover;
  filter: brightness(60%);
}

/* TEXTO */

.carousel-caption {
  bottom: 80px;
}

.carousel-caption h5 {
  font-size: 3rem;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.carousel-caption p {
  font-size: 1.1rem;
  color: #e2e2e2;
}

/* BOTÕES */

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0,0,0,0.5);
  border-radius: 50%;
  padding: 20px;
}

/* INDICADORES */

.carousel-indicators button {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  background-color: #c59d5f !important;
}

/* RESPONSIVIDADE */

@media (max-width: 992px) {

  #carouselExampleDark {
    width: 95%;
  }

  .carousel-item img {
    height: 400px;
  }

  .carousel-caption h5 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {

  .carousel-item img {
    height: 300px;
  }

  .carousel-caption {
    bottom: 30px;
  }

  .carousel-caption h5 {
    font-size: 1.5rem;
  }

  .carousel-caption p {
    font-size: 0.9rem;
  }
}