/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #212121;
  background: #fff;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   TYPOGRAPHY
=========================== */
h1 { font-size: 2.4rem; font-weight: 700; line-height: 1.2; }
h2 { font-size: 1.9rem; font-weight: 700; line-height: 1.3; }
h3 { font-size: 1.05rem; font-weight: 600; }
h4 { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}
.btn--primary { background: #1863DC; color: #fff; border-color: #1863DC; }
.btn--primary:hover { background: #0d50b8; border-color: #0d50b8; }
.btn--outline { background: transparent; color: #1863DC; border-color: #1863DC; }
.btn--outline:hover { background: #1863DC; color: #fff; }
.btn--sm { padding: 9px 18px; font-size: 0.82rem; }

/* ===========================
   HEADER
=========================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #111;
  border-bottom: 1px solid #222;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  gap: 24px;
}
.header__logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.header__logo-wrap {
  height: 88px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.header__logo-img {
  height: 180px;
  width: auto;
  margin-top: -36px;
}
.header__logo-sub {
  font-size: 0.75rem;
  font-weight: 500;
  color: #aaa;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-left: 1px solid #444;
  padding-left: 14px;
}

.header__nav > ul { display: flex; gap: 28px; }
.header__nav a {
  color: #ddd;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.header__nav a:hover { color: #fff; }

/* Dropdown */
.has-dropdown { position: relative; }
.nav-arrow { font-size: 0.7rem; opacity: 0.7; }

.dropdown {
  display: none !important;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  min-width: 200px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  z-index: 200;
  overflow: hidden;
  flex-direction: column;
  gap: 0;
}
.has-dropdown:hover .dropdown { display: flex !important; }
.dropdown li { width: 100%; }
.dropdown li a {
  display: block;
  padding: 12px 18px;
  color: #ccc;
  font-size: 0.85rem;
  font-weight: 400;
  border-bottom: 1px solid #2a2a2a;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: #1863DC; color: #fff; }

.header__phone {
  color: #6EC1E4;
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
}
.header__phone:hover { color: #fff; }

.header__burger span { background: #fff; }

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #212121;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===========================
   HERO
=========================== */
.hero {
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
              url('https://cubiertasingerclima.com/wp-content/uploads/2023/02/25-sumergida-en-zona-playa-scaled.jpg') center center / cover no-repeat;
  padding: 80px 0 90px;
  color: #fff;
}
.hero__inner { max-width: 680px; }
.hero__tag {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 36px;
  line-height: 1.75;
  font-weight: 400;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .btn--outline { color: #fff; border-color: rgba(255,255,255,0.7); }
.hero .btn--outline:hover { background: #fff; color: #1863DC; border-color: #fff; }

/* ===========================
   BENEFITS
=========================== */
.benefits {
  background: #F4F4F4;
  padding: 56px 0;
  border-bottom: 1px solid #EBEBEB;
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.benefit-card {
  background: #fff;
  border-radius: 8px;
  padding: 28px 22px;
  text-align: center;
  border: 1px solid #EBEBEB;
  transition: box-shadow 0.2s, transform 0.2s;
}
.benefit-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); transform: translateY(-3px); }
.benefit-card__icon { font-size: 2.1rem; margin-bottom: 14px; }
.benefit-card h3 { font-size: 0.95rem; color: #1863DC; margin-bottom: 8px; }
.benefit-card p { font-size: 0.85rem; color: #666; line-height: 1.6; }

/* ===========================
   SECTIONS
=========================== */
.section { padding: 80px 0; }
.section--gray { background: #F4F4F4; }

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.section__header h2 { color: #212121; margin-bottom: 12px; }
.section__header p { color: #666; font-size: 0.95rem; line-height: 1.7; font-weight: 400; }

/* ===========================
   LAMAS — TABS
=========================== */
.tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #EBEBEB;
  margin-bottom: 36px;
}
.tab {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  padding: 12px 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  transition: all 0.2s;
}
.tab:hover { color: #1863DC; }
.tab.active { color: #1863DC; border-bottom-color: #1863DC; font-weight: 600; }

.tab-content { display: none; }
.tab-content.active { display: block; }

.material-info {
  background: #EEF4FF;
  border-left: 4px solid #1863DC;
  padding: 14px 20px;
  border-radius: 0 6px 6px 0;
  margin-bottom: 28px;
  font-size: 0.9rem;
  color: #444;
  line-height: 1.6;
}

/* Colores */
.colors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}
.color-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 500;
  color: #444;
}
.color-option input[type="radio"] { display: none; }
.color-swatch {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid transparent;
  transition: all 0.2s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.color-option input[type="radio"]:checked + .color-swatch {
  border-color: #1863DC;
  box-shadow: 0 0 0 3px rgba(24,99,220,0.25);
  transform: scale(1.1);
}

/* Configurador */
.lama-config {
  background: #fff;
  border: 1px solid #EBEBEB;
  border-radius: 10px;
  padding: 32px;
}
.config-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.4fr;
  gap: 20px;
  margin-bottom: 28px;
  align-items: start;
}
.config-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 8px;
}
.config-field input[type="number"] {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #ddd;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: #212121;
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}
.config-field input[type="number"]:focus { border-color: #1863DC; }

.radio-group { display: flex; flex-direction: column; gap: 8px; }
.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 400;
  color: #444;
  cursor: pointer;
}
.radio-option input[type="radio"] { accent-color: #1863DC; width: 16px; height: 16px; }

/* ===========================
   PRODUCT PLACEHOLDERS
=========================== */
.placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-placeholder {
  background: #fff;
  border: 1px solid #EBEBEB;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.product-placeholder:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); transform: translateY(-4px); }

.product-placeholder__img {
  height: 210px;
  background: #F4F4F4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-placeholder__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.product-placeholder:hover .product-placeholder__img img { transform: scale(1.04); }

.img-placeholder {
  text-align: center;
  color: #bbb;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.8;
}
.img-placeholder { font-size: 2rem; }
.img-placeholder span { display: block; font-size: 0.78rem; margin-top: 6px; color: #bbb; }

.product-placeholder__body { padding: 22px; }
.product-placeholder__body h3 { color: #212121; margin-bottom: 4px; }
.product-ref { font-size: 0.78rem; color: #999; margin-bottom: 10px; }
.product-desc { font-size: 0.85rem; color: #666; line-height: 1.6; margin-bottom: 16px; font-weight: 400; }
.product-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1863DC;
  margin-bottom: 16px;
}

/* ===========================
   CONTACT
=========================== */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.contact__info h2 { color: #212121; margin-bottom: 14px; }
.contact__info > p { color: #666; font-size: 0.9rem; line-height: 1.7; margin-bottom: 28px; font-weight: 400; }
.contact__list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.contact__list li { font-size: 0.9rem; color: #444; display: flex; align-items: flex-start; gap: 8px; }
.contact__list a { color: #1863DC; font-weight: 600; }
.contact__list a:hover { text-decoration: underline; }

.contact__brand {
  padding-top: 24px;
  border-top: 1px solid #EBEBEB;
  font-size: 0.82rem;
  color: #999;
}
.contact__brand a { color: #1863DC; font-weight: 600; display: block; margin-top: 4px; font-size: 0.9rem; }

.contact__form {
  background: #F4F4F4;
  border: 1px solid #EBEBEB;
  border-radius: 10px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: #444; }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 11px 14px;
  border: 1.5px solid #ddd;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  color: #212121;
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: #1863DC; }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ===========================
   FOOTER
=========================== */
.footer { background: #1a1a2e; color: #fff; padding: 60px 0 0; }
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__logo { height: 38px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer__logo-text { display: none; font-weight: 700; font-size: 1rem; color: #fff; }
.footer__brand p { color: rgba(255,255,255,0.6); font-size: 0.85rem; line-height: 1.7; margin-top: 10px; font-weight: 400; }
.footer__links h4,
.footer__contact h4 { color: rgba(255,255,255,0.5); margin-bottom: 16px; font-size: 0.75rem; }
.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { color: rgba(255,255,255,0.75); font-size: 0.875rem; font-weight: 400; transition: color 0.2s; }
.footer__links a:hover { color: #fff; }
.footer__contact p { color: rgba(255,255,255,0.75); font-size: 0.875rem; margin-bottom: 8px; font-weight: 400; }
.footer__contact a { color: rgba(255,255,255,0.75); }
.footer__contact a:hover { color: #fff; }
.footer__bottom {
  padding: 20px 24px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
}
.footer__bottom a { color: rgba(255,255,255,0.6); }
.footer__bottom a:hover { color: #fff; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .placeholder-grid { grid-template-columns: repeat(2, 1fr); }
  .config-row { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }

  .header__nav,
  .header__phone { display: none; }
  .header__nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: #111;
    border-bottom: 1px solid #222;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    padding: 8px 0;
    z-index: 99;
  }
  .header__nav.open ul { flex-direction: column; gap: 0; }
  .header__nav.open ul li a {
    display: block;
    padding: 13px 24px;
    border-bottom: 1px solid #222;
    font-size: 0.95rem;
    color: #ddd;
  }
  .header { position: relative; }
  .header__burger { display: flex; }

  .hero { padding: 56px 0 64px; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { text-align: center; }

  .benefits__grid { grid-template-columns: 1fr; }
  .placeholder-grid { grid-template-columns: 1fr; }
  .config-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .contact__form { padding: 24px; }
  .lama-config { padding: 20px; }
  .tabs { overflow-x: auto; }
  .tab { white-space: nowrap; }
}

/* ===========================
   ABOUT SECTION
=========================== */

/* Barra de estadísticas */
.about-stats-bar {
  background: #0d50b8;
  background: linear-gradient(90deg, #0d50b8 0%, #1863DC 100%);
  padding: 56px 0;
}
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.about-stat {
  padding: 8px 20px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.about-stat:last-child { border-right: none; }
.about-stat__num {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.about-stat__lbl {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

/* Cuerpo */
.about-body {
  padding: 96px 0;
  background: #FAFAFA;
}
.about-body__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-body__img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 16px 16px 0px #1863DC;
}
.about-body__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #1863DC;
  margin-bottom: 24px !important;
}
.about-body__text p {
  font-family: Georgia, serif;
  font-size: 1rem;
  line-height: 1.9;
  color: #444;
  margin-bottom: 20px;
}
.about-body__text strong { color: #111; font-family: "Poppins", sans-serif; }
.about-body__list {
  margin-top: 32px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
}
.about-body__list li {
  font-size: 0.9rem;
  color: #333;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  padding-left: 28px;
  position: relative;
}
.about-body__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 2px;
  background: #1863DC;
}

@media (max-width: 1024px) {
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding: 20px; }
  .about-body__grid { grid-template-columns: 1fr; gap: 48px; }
  .about-body__img { display: none; }
  .about-body { padding: 64px 0; }
}

/* ===========================
   SOBRE NOSOTROS — TARJETAS
=========================== */
.about-cards-section {
  padding: 96px 0 80px;
  background: #f7f9fc;
}
.about-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.about-photo {
  margin: 64px auto 0;
  max-width: 700px;
  text-align: center;
}
.about-photo img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
@media (max-width: 1024px) {
  .about-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .about-cards-grid { grid-template-columns: 1fr; }
  .about-photo img { height: 220px; }
}

/* ===========================
   PAGE HERO (páginas internas)
=========================== */
.page-hero {
  background: linear-gradient(135deg, #0d2d4e 0%, #1863DC 100%);
  padding: 72px 0 56px;
  color: #fff;
}
.page-hero h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 1.05rem;
  opacity: 0.85;
  max-width: 600px;
}

/* ===========================
   PRODUCTOS HOME — TARJETAS
=========================== */
.productos-home {
  padding: 88px 0;
  background: #eef2f7;
}
.productos-home__grid--2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.producto-home-card {
  display: flex;
  flex-direction: row;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 18px rgba(0,0,0,0.07);
  border: 1px solid #dde3ec;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  min-height: 220px;
}
.producto-home-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  transform: translateY(-3px);
}
/* Franja lateral izquierda con imagen o color */
.producto-home-card__img {
  position: relative;
  width: 160px;
  min-width: 160px;
  overflow: hidden;
  flex-shrink: 0;
}
.producto-home-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.producto-home-card:hover .producto-home-card__img img {
  transform: scale(1.06);
}
.producto-home-card__img--placeholder {
  background: linear-gradient(180deg, #0d2d4e 0%, #1863DC 100%);
}
.producto-home-card__tag {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  text-align: center;
  background: rgba(8,24,48,0.65);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 8px;
  text-transform: uppercase;
}
/* Contenido derecho */
.producto-home-card__body {
  flex: 1;
  padding: 24px 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.producto-home-card__body h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0d2d4e;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #dde3ec;
  letter-spacing: 0.2px;
}
.producto-home-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.producto-home-card__features li {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 0.88rem;
  color: #3a4a5c;
  line-height: 1.55;
  padding-left: 14px;
  position: relative;
}
.producto-home-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  background: #1863DC;
  border-radius: 50%;
}
.producto-home-card__link {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #1863DC;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.producto-home-card:hover .producto-home-card__link {
  text-decoration: underline;
}
@media (max-width: 900px) {
  .productos-home__grid--2x2 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .producto-home-card { flex-direction: column; }
  .producto-home-card__img { width: 100%; min-width: unset; height: 140px; }
}

/* ===========================
   LAMAS — GALERÍA CON HOVER
=========================== */
.lama-desc {
  margin: 24px 0 32px;
  color: #444;
  font-size: 0.95rem;
  max-width: 700px;
}
.lama-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}
.lama-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  width: 155px;
}
.lama-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}
.lama-card__img {
  width: 100%;
  height: 155px;
  position: relative;
  overflow: hidden;
}
.lama-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.lama-card:hover .lama-card__img img {
  transform: scale(1.05);
}
/* Efecto rayas que simulan la textura de una lama */
.lama-card__stripes {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.08) 0px,
    rgba(255,255,255,0.08) 2px,
    transparent 2px,
    transparent 18px
  );
}
.lama-card__stripes--dark {
  background-image: repeating-linear-gradient(
    90deg,
    rgba(0,0,0,0.08) 0px,
    rgba(0,0,0,0.08) 2px,
    transparent 2px,
    transparent 18px
  );
}
.lama-card__stripes--transp {
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.18) 0px,
    rgba(255,255,255,0.18) 2px,
    transparent 2px,
    transparent 18px
  );
}
/* Overlay que aparece al hacer hover */
.lama-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 30, 60, 0.82);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.25s ease;
  padding: 16px;
  text-align: center;
}
.lama-card:hover .lama-card__overlay {
  opacity: 1;
}
.lama-card__material {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #7ecfee;
}
.lama-card__color {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}
.lama-card__btn {
  margin-top: 8px;
  padding: 7px 18px;
  background: #1863DC;
  color: #fff;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: background 0.2s;
}
.lama-card__btn:hover { background: #0d50b8; }
/* Etiqueta debajo de la tarjeta */
.lama-card__label {
  padding: 10px 8px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  background: #fff;
  border-top: 1px solid #eee;
}
.lama-cta {
  text-align: center;
  margin-top: 8px;
}
@media (max-width: 600px) {
  .lama-card { width: 130px; }
  .lama-card__img { height: 130px; }
}
