* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f6f8;
  color: #111827;
}


/* HEADER */

header {
  background: rgba(17, 24, 39, 0.95);
  color: white;
  padding: 18px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  backdrop-filter: blur(8px);
}

.logo {
  font-size: 26px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo span {
  font-size: 14px;
  color: #ff9900;
  margin-top: 5px;
  font-weight: normal;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

nav a:hover {
  color: #ff9900;
}

.amazon-top {
  background: #ff9900;
  color: #111 !important;
  padding: 10px 18px;
  border-radius: 22px;
  font-weight: bold;
}


/* HERO */

.hero {
  min-height: 280px;
  padding: 100px 5% 45px;
  color: white;

  background:
    linear-gradient(
      rgba(0, 0, 0, 0.45),
      rgba(0, 0, 0, 0.45)
    ),
    url("https://images.unsplash.com/photo-1558002038-1055907df827")
    center / cover no-repeat;
}

.hero h1 {
  font-size: 34px;
  max-width: 600px;
}

.hero p {
  font-size: 16px;
  max-width: 500px;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  background: white;
  color: #111827;
  padding: 10px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 5px;
  transition: 0.3s;
}

.btn:hover {
  background: #ff9900;
}


/* CONTENEDOR */

.container {
  width: 90%;
  max-width: 1250px;
  margin: auto;
  padding: 30px 0;
}

h2 {
  font-size: 26px;
  margin-bottom: 25px;
  border-left: 5px solid #ff9900;
  padding-left: 12px;
}


/* PRODUCTOS PRINCIPALES */

.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product {
  background: white;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}

.product:hover {
  transform: translateY(-5px);
}

.product img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  margin-bottom: 15px;
}

.product h3 {
  font-size: 17px;
  margin: 8px 0;
}

.product p {
  font-size: 14px;
  line-height: 1.5;
  flex-grow: 1;
}


/* BOTONES AMAZON */

.amazon {
  display: block;
  background: #ff9900;
  color: #111;
  padding: 10px 15px;
  border-radius: 22px;
  text-decoration: none;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  margin-top: 8px;
  transition: 0.3s;
  width: 100%;
}

.amazon:hover {
  background: #ffb84d;
}


/* PRODUCTOS DESTACADOS */

.achadinhos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  margin-top: 30px;
  align-items: stretch;
}

.achado {
  width: 100%;
  background: white;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: 0.3s;
  min-height: 350px;
}

.achado:hover {
  transform: translateY(-5px);
}

.achado h3 {
  font-size: 25px;
  line-height: 1.2;
  margin: 5px 0 20px;
}

.achado p {
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 30px;
  min-height: 70px;
}

.achado .amazon {
  display: block;
  width: 100%;
  text-align: center;
  background: #ff9900;
  color: #111;
  padding: 12px;
  margin: 8px 0;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
}

.achado .amazon:hover {
  background: #ffb84d;
}


/* SOBRE URANIA / PREGUNTAS FRECUENTES */

.about {
  width: 90%;
  max-width: 1250px;
  margin: 40px auto;
  background: white;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
}

.about h2 {
  text-align: center;
  border-left: none;
  padding-left: 0;
}

.about h3 {
  text-align: center;
  margin-top: 25px;
}

.about p {
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
}


/* FOOTER */

footer {
  background: #111827;
  color: white;
  text-align: center;
  padding: 25px;
  margin-top: 30px;
}

footer p {
  margin: 0;
}


/* TABLET */

@media (max-width: 1000px) {

  .products,
  .achadinhos {
    grid-template-columns: repeat(2, 1fr);
  }

  nav {
    gap: 10px;
  }

  nav a {
    font-size: 13px;
  }
}


/* MÓVIL */

@media (max-width: 650px) {

  header {
    padding: 16px 4%;
  }

  .logo {
    font-size: 23px;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 320px;
    padding: 105px 5% 45px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 15px;
  }

  .container {
    width: 92%;
  }

  .products,
  .achadinhos {
    grid-template-columns: 1fr;
  }

  .achado {
    padding: 24px;
  }

  .achado h3 {
    font-size: 22px;
  }

  .achado p {
    font-size: 16px;
    min-height: auto;
  }

  .about {
    width: 92%;
    padding: 25px 20px;
  }

  h2 {
    font-size: 23px;
  }
}