
* { box-sizing: border-box; margin: 0; padding: 0; }
html,body { height: 100%; }
body {
  font-family: "Times New Roman", serif;
  background: #0b2a1b;
  color: #072014;
  line-height: 1.4;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

hero {
  background-image: url(""img/base.png"");
}


.container { width: 92%; max-width: 1200px; margin: 0 auto; }

/* ---------- HERO ----------- */
.site-header { padding: 18px 0; position: sticky; top: 0; z-index: 30; }
.header-inner { display:flex; align-items:center; justify-content:space-between; gap:1rem; }
.brand { font-size:1.4rem; text-decoration:none; color: #fff; }
.nav-list { list-style:none; display:flex; gap:14px; align-items:center; }
.nav-list a { text-decoration:none; color: #dfe9e6; font-size:0.85rem; padding:10px 18px; border-radius:30px; background: rgba(0,0,0,0.15); }
.cart { text-decoration:none; color:#fff; font-size:1.2rem; }

/* ---------- HERO ----------- */
.hero {
  height: 58vh;
  min-height: 420px;
  position: relative;
  display:flex;
  align-items:flex-start;
  justify-content:flex-start;
  padding-top: 36px;
  background-image: url("img/base.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: grayscale(1);
}

.hero-overlay {
  width:100%;
  height:100%;
  display:flex;
  align-items:flex-start;
  justify-content:flex-start;
  padding-left: 28px;
  padding-top: 30px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.25) 45%, rgba(0,0,0,0.0) 100%);
}

.hero-title {
  color: #fff;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
}
/* SCROLL */

.about-box {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  background: rgba(255,255,255,0.1);
  padding: 16px;
  border-radius: 14px;
}

.scroll-container {
  width: 100%;
  max-height: 180px;     /* tamaño del recuadro */
  overflow-x: auto;       /* scroll horizontal */
  overflow-y: auto;       /* scroll vertical */
  white-space: normal;    /* permite saltos de línea → contenido hacia abajo */
  position: relative;
  padding-bottom: 12px;
  scroll-behavior: smooth;
}

/* CARDS */
.scroll-item {
  display: inline-block;
  width: 260px;      
  height: 180px;     
  margin-right: 16px;
  background: #f2f2f2;
  border-radius: 12px;
}

/* SCROLL */
.scroll-arrow {
  position: absolute;
  right: 0;
  bottom: 4px;
  width: 32px;
  height: 32px;
  background: black;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.scroll-arrow:hover {
  opacity: 1;
}

/* PRODUCTS (cards) */
.row { display:flex; gap:20px; flex-direction:column; margin: 2rem 0; }

.products { gap:18px; }
.card {
  background: #fff;
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 10px 18px rgba(3,3,3,0.18);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:space-between;
  transition: transform .35s cubic-bezier(.2,.9,.2,1), box-shadow .35s;
  overflow:hidden;
}

.card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 22px 36px rgba(0,0,0,0.28);
}

.card img {
  width: 90%;
  max-width: 220px;
  object-fit: contain;
  margin-bottom: 12px;
  transition: transform .35s;
}

/* SOCIAL */
.socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin: 0 auto;
}

.card:hover img { transform: translateY(-6px) scale(1.03); }

.cta {
  background: #154a33;
  color: #fff;
  border: none;
  padding: 10px 28px;
  border-radius: 24px;
  cursor:pointer;
  font-family: "Times New Roman", serif;
  letter-spacing: .08em;
  margin-top: 6px;
  transition: background .25s, transform .2s;
}
.card:hover .cta { background: #a9b4ae; color: #072014; transform: translateY(-2px); }

/* MARQUEE */
.marquee-wrap {
  margin: 1.8rem 0;
  overflow:hidden;
  background: linear-gradient(90deg, #1f4f33, #2f6a46);
  border-radius: 12px;
  padding: 18px 10px;
}

.marquee {
  white-space:nowrap;
  display:block;
  overflow:hidden;
}
.marquee p {
  display:inline-block;
  font-size: clamp(1rem, 2.8vw, 1.6rem);
  color: #f3f7f3;
  animation: marquee 12s linear infinite;
  padding-left: 100%;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* SOCIAL CARDS */
.social-card {
  background:#fff; border-radius:22px; padding:14px; display:block; text-decoration:none; color:inherit;
  box-shadow: 0 10px 18px rgba(0,0,0,0.15);
  transition: transform .35s, box-shadow .35s;
}
.social-card:hover { transform: translateY(-6px); box-shadow: 0 20px 30px rgba(0,0,0,0.24); }

.social-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 20px;
}

/* SCROLL */
.about { margin: 1.4rem 0 3rem; }
.about h2 { margin-bottom: 12px; color:#fff; font-size:1.05rem; }
.about-box {
  background:#fff;
  border-radius:20px;
  padding:12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.16);
}

.about-scroll {
  overflow-y: scroll;  
  overflow-x: hidden;   
}

/* SCROLLBOAR */
.about-scroll::-webkit-scrollbar { width: 12px; }
.about-scroll::-webkit-scrollbar-track { background: transparent; border-radius: 8px; }
.about-scroll::-webkit-scrollbar-thumb { background: #9cb79f; border-radius: 8px; }

/*FOOTER*/
.site-footer { padding: 28px 0; background: linear-gradient(180deg, #1b4733, #0d2b1d); color:#e7efe8; margin-top: 20px; }
.footer-inner { display:flex; flex-direction:column; gap:12px; align-items:center; text-align:center; }
.footer-nav { display:flex; gap:12px; flex-wrap:wrap; }
.footer-nav a { color: #dbe7dc; text-decoration:none; font-size:0.9rem; }

/* RESPONSIVE */
@media (min-width: 720px) {
  .row { flex-direction:row; }
  .products .card { flex:1; }
  .socials { flex-direction:row; }
  .about-scroll { height: 260px; }
}

@media (min-width: 1024px) {
  .hero { height: 70vh; min-height: 600px; }
  .hero-overlay { padding-left: 80px; padding-top: 48px; }
  .hero-title { font-size: clamp(2.4rem, 6vw, 5rem); }
  .container { max-width: 1320px; }
}

