/* Blanco y negro minimalista y responsive */
:root {
  --bg-main: #ffffff;
  --bg-alt: #f7f7f7;
  --color-text: #111111;
  --color-muted: #555555;
  --accent: #000000;
  --accent-soft: #222222;
  --border-soft: rgba(0,0,0,0.08);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-full: 999px;
  --shadow-soft: 0 14px 40px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--bg-main);
  color: var(--color-text);
}
img { max-width: 100%; display: block; }

.top-banner {
  background: #000000;
  color: #ffffff;
  text-align: center;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
}

.main-header {
  display: flex;
  align-items: center;
  justify-content: center;   /* logo centrado */
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-soft);
  position: relative;
}

.brand-logo img {
  height: 32px;
  display: block;
}

/* Hamburguer a la derecha */
.nav-toggle {
  border: none;
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 4px;
  cursor: pointer;
  position: absolute;
  right: 1.5rem;             /* lado derecho del header */
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: #000000;
}

/* Solo en móvil */
@media (min-width: 769px) {
  .nav-toggle {
    display: none;
  }
}

.brand-mark {
  font-family: "Times New Roman", serif;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
}

.header-actions { display: flex; gap: 0.5rem; }
.icon-btn {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  cursor: pointer;
}

/* Barra desktop (igual que antes) */
.main-nav {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 0.7rem 2.5rem;
  background: #020202;
}

.nav-link {
  color: #000000;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

/* En móvil ocultamos la barra y usaremos el menú hamburguer */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
}

.hero {
  padding: 3rem 1.5rem 2.5rem;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2.5rem;
  align-items: center;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
}
.hero h1 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 2.3rem;
  line-height: 1.2;
  margin: 0.5rem 0 1rem;
}
.hero-text {
  font-size: 1rem;
  color: var(--color-muted);
  max-width: 32rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-full);
  background: #000000;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  margin-top: 1.4rem;
}

.hero-media {
  display: flex;
  justify-content: center;
}
.ring-hero {
  width: 220px;
  height: 120px;
  border-radius: var(--radius-md);
  background-image: url("../img/16bg.jpg");  /* ojo: ../ porque styles.css está dentro de css/ */
  background-size: cover;
  background-position: center;
   
}

.section-header {
  max-width: 1100px;
  margin: 0 auto 1.5rem;
  padding: 0 1.5rem;
}
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
}
.section-header h2 {
  font-family: "Maharlika", "Maharlika";
  font-size: 1.9rem;
  margin: 0.3rem 0 0.3rem;
}
.section-note {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.catalogo {
  padding: 2.5rem 0 3rem;
  background: #ffffff;
}

.catalogo-filters {
  max-width: 1100px;
  margin: 0 auto 1.5rem;
  padding: 0 1.5rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.filter-pill {
  border-radius: var(--radius-full);
  border: 1px solid var(--border-soft);
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  background: #ffffff;
  cursor: pointer;
}
.filter-pill.is-active {
  background: #000000;
  color: #ffffff;
}

.catalogo-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.producto-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 1.3rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.producto-media {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 16px;
  background: radial-gradient(circle at 30% 20%, #f7f7f7, #dddddd);
}
/* Cada clase media-* puede luego recibir background-image:url(...) */

.producto-body h3 {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.1rem;
  margin: 0;
}
.producto-body p {
  margin: 0.35rem 0;
  font-size: 0.9rem;
}
.producto-meta {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.btn-outline {
  width: 100%;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-soft);
  background: #ffffff;
  cursor: pointer;
  font-size: 0.9rem;
}

.tallas {
  max-width: 1100px;
  margin: 2.3rem auto 0;
  padding: 0 1.5rem;
}
.tallas h3 {
  font-size: 1.1rem;
}
.tallas p {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.sobre {
  padding: 3rem 0 3rem;
  background: var(--bg-alt);
}
.sobre-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 2fr);
  gap: 2rem;
  align-items: center;
}
.sobre-media {
  width: 100%;
  aspect-ratio: 2/2;
  border-radius: 14px;
  background-image: url("../img/imagennino.jpg");
  background-size: cover;
  background-position: center;
}
.sobre-copy p {
  font-size: 0.95rem;
  color: var(--color-muted);
}

.por-que {
  padding: 3rem 0 3.5rem;
  background: #ffffff;
}
.por-que-grid {
  max-width: 1100px;
  margin: 0 auto 2rem;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}
.reason-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--border-soft);
  padding: 1.1rem 1.1rem 1.2rem;
}
.reason-card h3 {
  font-size: 1rem;
  margin: 0 0 0.4rem;
}
.reason-card p {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.por-que-media {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

/* Todos los cuadros con el mismo tamaño */
.por-que-item {
  width: 220px;              /* ajusta aquí el ancho que quieres */
  height: 140px;             /* y aquí el alto */
  border-radius: 20px;
  background-size: contain;  /* o cover si prefieres que llenen */
  background-position: center;
  background-repeat: no-repeat;
}

/* 1) 15.jpg */
.por-que-15 {
  background-image: url("../img/17.jpg");
}

/* 2) anesp.jpg */
.por-que-anesp {
  background-image: url("../img/anesp.jpg");
}

/* 3) sobre.jpg */
.por-que-sobre {
  background-image: url("../img/sobre.jpg");
}

@media (max-width: 768px) {
  .por-que-media {
    flex-direction: column;
    align-items: center;
  }
}
.por-que-ring,
.por-que-pouch {
  width: 180px;
  height: 110px;
  border-radius: 20px;
}
.por-que-ring {
  background: linear-gradient(135deg, #444444, #bbbbbb);
}
.por-que-pouch {
  background: linear-gradient(135deg, #c1783a, #8b5224);
}

.por-que-cta {
  text-align: center;
  margin-top: 2rem;
}

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #0ce95d2d;      /* opcional, puedes poner transparente */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.whatsapp-float img {
  width: 50PX;                    /* ajusta según tamaño del logo */
  height: 50PX;
  display: block;
}

.site-footer {
  padding: 1.5rem 1.5rem 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .catalogo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .por-que-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .catalogo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sobre-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .por-que-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .main-nav {
    overflow-x: auto;
  }
}

@media (max-width: 480px) {
  .catalogo-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.brand-logo img {
  height: 32px;       /* ajusta según se vea mejor */
  display: block;
}
.media-onda {
  background-image: url("img/hero-ring.jpg");
  background-size: cover;
  background-position: center;
}


.main-nav {
  display: flex;
  justify-content: center;
  gap: 5rem;
  padding: 0.75rem 3rem;
  background: #000000;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
}

/* En móvil ocultamos la barra y usaremos el menú hamburguer */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
}


/* Overlay móvil profesional */
.mobile-menu {
  position: fixed;
  inset: 0;                      /* top/right/bottom/left: 0 */
  background: rgba(0, 0, 0, 0.94);
  color: #ffffff;
  display: none;                 /* se controla con JS */
  z-index: 1000;
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
}

.mobile-menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

/* En móvil: ocultar barra y usar overlay */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
}
 

.media-onda {
  background-image: url("../img/1.jpg");
  background-size: cover;
  background-position: center;
}

.media-everest {
  background-image: url("../img/2.jpg");
  background-size: cover;
  background-position: center;
}

.media-lesus {
  background-image: url("../img/3.jpg");
  background-size: cover;
  background-position: center;
}

.media-eterno {
  background-image: url("../img/4.jpg");
  background-size: cover;
  background-position: center;
}

.media-neo {
  background-image: url("../img/5.jpg");
  background-size: cover;
  background-position: center;
}

.media-prisma {
  background-image: url("../img/6.jpg");
  background-size: cover;
  background-position: center;
}

.media-vertice {
  background-image: url("../img/7.jpg");
  background-size: cover;
  background-position: center;
}

.media-encrucijada {
  background-image: url("../img/8.jpg");
  background-size: cover;
  background-position: center;
}

/* y así hasta el anillo 15 */
.media-9 {
  background-image: url("../img/9.jpg");
  background-size: cover;
  background-position: center;
}

.media-10 {
  background-image: url("../img/10.jpg");
  background-size: cover;
  background-position: center;
}

.media-11 {
  background-image: url("../img/11.jpg");
  background-size: cover;
  background-position: center;
}

.media-12 {
  background-image: url("../img/12.jpg");
  background-size: cover;
  background-position: center;
}

.media-13 {
  background-image: url("../img/13.jpg");
  background-size: cover;
  background-position: center;
}

.media-14 {
  background-image: url("../img/14.jpg");
  background-size: cover;
  background-position: center;
}

.media-15 {
  background-image: url("../img/15.jpg");
  background-size: cover;
  background-position: center;
}

.media-16 {
  background-image: url("../img/16.jpg");
  background-size: cover;
  background-position: center;
}