* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
  background: #fffaf7;
  color: #1f1f1f;
}
a {
  text-decoration: none;
}
img {
  width: 100%;
  display: block;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
/*/////////HEADER/////////*/
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}
.logo {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: #0e1122;
}
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-links a {
  color: #222;
  font-weight: 500;
  transition: 0.3s;
}
.nav-links a:hover {
  color: #ff4d4d;
}
.btn-whatsapp {
  background: linear-gradient(90deg, #ff3b3b, #DC5083);
  color: white;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(255, 90, 90, 0.3);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
}
.btn-whatsapp-hero{
  width: 50%;
  background-color: #25d366;
  color: white;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(255, 90, 90, 0.3);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
}
/*/////////HERO/////////*/
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(120deg, #ff4646 0%, #DC5083 100%);
  overflow: hidden;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
  padding: 70px 0;
}
.hero-text h1 {
  font-size: 4rem;
  line-height: 1.05;
  color: #111;
  margin-bottom: 25px;
  font-weight: 800;
}
.hero-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 550px;
}
.hero-features {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}
.feature i {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: #ff5a45;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.hero-image {
  flex-shrink: 0;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
/*/////////BRANDS/////////*/
.brands {
  background: white;
  padding: 60px 0;
  overflow: hidden;
}
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 700;
}
.brands-slider {
  overflow: hidden;
  position: relative;
}
.brands-track {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: scrollBrands 25s linear infinite;
}
.brand-card {
  background: #fff;
  min-width: 220px;
  padding: 25px;
  border-radius: 20px;
  border: 1px solid #DC5083;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
@keyframes scrollBrands {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/*/////////PRODUCTS/////////*/
.products {
  padding: 80px 0;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 25px;
}
.product-card {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 3px 7px #DC5083;
  transition: 0.3s;
}
.product-card:hover {
  transform: translateY(-6px);
}
.product-image {
  height: 260px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #DC5083;
}
.image-placeholder {
  width: 80%;
  height: 80%;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  text-align: center;
}
.image-placeholder img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 15px;
}
.product-info {
  padding: 25px;
}
.product-info h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.product-info p {
  font-size: 0.95rem;
  color: #777;
  margin-bottom: 15px;
}
.price {
  color: #ff4d4d;
  font-weight: 700;
  font-size: 1.3rem;
}
/*/////////LOCATION/////////*/
.location {
  padding: 90px 0;
  background: #fff4ee;
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.location-info h2 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 20px;
}
.location-info h2 span {
  color: #ff5a45;
}
.location-info p {
  margin-bottom: 25px;
  line-height: 1.8;
}
.location-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}
.location-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.location-item i {
  color: #ff5a45;
  font-size: 1.3rem;
  margin-top: 5px;
}
.map-placeholder {
  background: white;
  border-radius: 30px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px dashed #ffb39d;
  color: #777;
  text-align: center;
  overflow: hidden;
}
.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}
/*/////////CTA/////////*/
.cta {
  background: linear-gradient(90deg, #ff5b45, #DC5083);
  padding: 70px 0;
  color: white;
}
.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-size: 2.3rem;
  margin-bottom: 15px;
}
.cta-text p {
  line-height: 1.7;
  max-width: 700px;
}
/*/////////FOOTER/////////*/
footer {
  background: #0d1020;
  color: white;
  padding: 70px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}
.footer-logo {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-links a {
  color: #d2d2d2;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links img {
  width: 60px;
  height: auto;
  border-radius: 8px;
  margin-top: 10px;
}
.socials {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.socials a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #1f243d;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: 0.3s;
}
.socials a:hover {
  background: #ff5a45;
}
.copyright {
  margin-top: 50px;
  text-align: center;
  color: #999;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
}
/*/////////FLOATING WHATSAPP/////////*/
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.libro-content {
  padding: 60px 0;
  background: #fffaf7;
  min-height: calc(100vh - 300px);
}

/*/////////RESPONSIVE/////////*/
@media (max-width: 1000px) {
  .hero-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .hero-text {
    text-align: center;
  }

  .hero-features {
    justify-content: center;
  }

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

  .nav-links {
    display: none;
  }
}
@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 2.4rem;
  }
  .product-circle {
    height: 400px;
  }
  .location-info h2 {
    font-size: 2rem;
  }
  .cta-text h2 {
    font-size: 1.8rem;
  }
}
