* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

body {
  background: #f8fafc;
  color: #1f2937;
}

a {
  text-decoration: none;
  color: inherit;
}

header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  max-width: 1200px;
  margin: auto;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.logo span {
  background: #2563eb;
  color: #fff;
  border-radius: 10px;
  padding: 8px 10px;
}

.menu {
  display: flex;
  gap: 20px;
}

.btn-primary {
  background: #2563eb;
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
}

section {
  padding: 80px 16px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* HERO */
.hero {
  text-align: center;
}

.badge {
  display: inline-block;
  background: #e0ecff;
  color: #2563eb;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
  color: #2563eb;
}



.hero p {
  max-width: 650px;
  margin: 0 auto 32px;
  color: #6b7280;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn-outline {
  border: 1px solid #d1d5db;
  padding: 10px 18px;
  border-radius: 10px;
}

/* SECTIONS */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.section-title p {
  color: #6b7280;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e5e7eb;
}

.card i {
  color: #2563eb;
  font-size: 26px;
  margin-bottom: 16px;
}

.card ul {
  padding-left: 18px;
  color: #6b7280;
  margin-bottom: 20px;
}

.card a {
  display: block;
  text-align: center;
  border: 1px solid #d1d5db;
  padding: 10px;
  border-radius: 10px;
  font-weight: 600;
}

/* ABOUT */
.about-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.about-box {
  text-align: center;
}

.about-box i {
  font-size: 30px;
  color: #2563eb;
  margin-bottom: 10px;
}

.location {
  background: #f1f5f9;
  border-radius: 16px;
  padding: 24px;
  margin-top: 40px;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

form {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
}

form input,
form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
}

form button {
  width: 100%;
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
}

.contact-info {
  background: #f1f5f9;
  padding: 24px;
  border-radius: 16px;
}

.map-box {
  margin-top: 20px;
  background: #e5e7eb;
  height: 180px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FOOTER */
footer {
  background: #111827;
  color: #d1d5db;
  padding: 50px 16px;
}

.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

footer h4 {
  color: #fff;
  margin-bottom: 14px;
}

.copyright {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 34px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .menu {
    display: none;
  }
}
/* CATÁLOGO */
#catalogo {
  background: #ffffff;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.catalog-item {
  background: #f8fafc;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.catalog-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.catalog-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;

    display: flex;
    justify-content: center;
    align-items: center;

    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
    transform: scale(1.1);
    transition: 0.3s;
}

.video-banner {
  display: block;
  margin: 40px auto;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}



