@charset "UTF-8";
/* Yep Pickups - Paleta Blanco/Cobre (Minimalista) */

:root {
  --copper: #b87333;
  --copper-light: #e0a068;
  --copper-dark: #8f5322;
  --copper-deep: #6e3f18;
  --white: #ffffff;
  --gray-light: #ebe3d6;
  --gray-border: #d9cfbf;
  --text-dark: #16130f;
  --text-secondary: #5e564d;
  --ink: #16130f;
  --cream: #f3ede3;

  /* Spacing & shape tokens */
  --section-pad: clamp(64px, 10vw, 110px);
  --radius: 2px;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(184, 115, 51, 0.15);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

/* Visible focus for keyboard users (accessibility) */
:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Navbar */
.navbar {
  background: transparent;
  padding: 15px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(22, 19, 15, 0.96);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  border-bottom: 1px solid rgba(243, 237, 227, 0.12);
}

.navbar-brand img {
  transition: height 0.3s ease;
}

.nav-link {
  color: var(--cream) !important;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 16px !important;
  transition: color 0.3s ease;
}

.navbar.scrolled .nav-link {
  color: var(--cream) !important;
}

.nav-link:hover,
.nav-link.active {
  color: var(--copper-light) !important;
}

.navbar-toggler {
  border-color: var(--copper);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(184, 115, 51, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 53%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 50%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, var(--ink) 38%, rgba(22, 19, 15, 0.7) 54%, rgba(22, 19, 15, 0.05) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 120px;
}

.hero-content {
  max-width: 640px;
  margin: auto 0;
  padding: 24px 0;
}

.hero-content h1 {
  font-size: clamp(3rem, 6.4vw, 5.75rem);
  font-weight: 500;
  font-variation-settings: "opsz" 144;
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 24px 0 22px;
  color: var(--cream);
}

.hero-content p {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 400;
  max-width: 520px;
  margin: 0 0 32px;
  color: rgba(250, 247, 242, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-actions .btn-primary {
  background: var(--copper-light);
  color: var(--ink);
}

.hero-actions .btn-primary:hover {
  background: var(--cream);
  color: var(--ink);
}

.hero-actions .btn-outline-light {
  border-color: rgba(250, 247, 242, 0.4);
  color: var(--cream);
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 26px;
  border-radius: var(--radius);
}

.hero-actions .btn-outline-light:hover {
  background: rgba(250, 247, 242, 0.1);
  border-color: var(--cream);
  color: var(--cream);
}

/* Eyebrow (etiqueta corta sobre un título) */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper-dark);
}

.eyebrow--light {
  color: var(--copper-light);
}

.eyebrow--light::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--copper-light);
}

/* Franja de confianza al pie del hero */
.hero-proof {
  list-style: none;
  margin: 0;
  padding: 26px 0 30px;
  border-top: 1px solid rgba(250, 247, 242, 0.18);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.hero-proof li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-proof strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cream);
}

.hero-proof span {
  font-size: 0.82rem;
  color: rgba(250, 247, 242, 0.72);
}

/* Botón "Cotizar" en la barra */
.nav-cta {
  background: var(--copper-light);
  color: var(--ink) !important;
  border-radius: var(--radius);
  padding: 10px 20px !important;
  margin-left: 12px;
}

.nav-cta:hover,
.nav-cta.active {
  background: var(--cream);
  color: var(--ink) !important;
}

/* Buttons */
.btn-primary {
  background: var(--ink);
  border: none;
  color: var(--cream);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease),
              box-shadow 0.3s var(--ease);
}

.btn-primary:hover {
  background: var(--copper-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(143, 83, 34, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  background: #128C7E;
  color: var(--white);
  transform: translateY(-2px);
}

/* Sections */
.section-dark {
  background: var(--cream);
  padding: var(--section-pad) 0;
}

.section-light {
  background: var(--gray-light);
  padding: var(--section-pad) 0;
}

.section-title {
  text-align: left;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  margin: 0 0 clamp(36px, 5vw, 56px);
  color: var(--text-dark);
  line-height: 1.05;
}

/* Catálogo */
.section-catalog {
  background: var(--cream);
  padding: var(--section-pad) 0;
}

.catalog-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 36px;
}

.catalog-title {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  margin: 12px 0 0;
}

.catalog-lead {
  max-width: 440px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.catalog-filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 24px;
  padding-bottom: 20px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--gray-border);
}

.filter-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-right: 4px;
}

.filter-chip {
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid #d9d0c4;
  background: transparent;
  color: var(--text-dark);
  font-family: "Work Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.filter-chip:hover {
  border-color: var(--text-dark);
}

.filter-chip.active {
  background: var(--text-dark);
  border-color: var(--text-dark);
  color: var(--cream);
}

.filter-chip--sm {
  height: 36px;
  padding: 0 14px;
  font-size: 0.8rem;
  font-weight: 500;
  background: var(--white);
}

.filter-chip--sm.active {
  background: var(--copper-dark);
  border-color: var(--copper-dark);
  color: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.catalog-empty {
  margin: 8px 0 0;
  text-align: center;
  color: var(--text-secondary);
}

.link-btn {
  border: none;
  background: none;
  padding: 0;
  font: inherit;
  font-weight: 600;
  color: var(--copper-dark);
  cursor: pointer;
  text-decoration: underline;
}

/* Product Cards */
.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease),
              box-shadow 0.35s var(--ease),
              border-color 0.35s var(--ease);
}

.product-card[hidden] {
  display: none;
}

.product-card:hover,
.product-card:focus-within {
  border-color: var(--copper);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.product-media {
  position: relative;
  overflow: hidden;
}

.product-media img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.product-card:hover .product-media img {
  transform: scale(1.06);
}

.product-format {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 10px;
  background: var(--text-dark);
  color: var(--cream);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 3px;
}

.product-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 22px 20px;
  flex-grow: 1;
}

.product-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.product-name {
  font-size: 1.5rem;
  margin: 0;
}

.product-resistance {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper-dark);
}

.product-short {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-secondary);
  flex-grow: 1;
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: 0;
}

.product-specs dt {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6f6861;
}

.product-specs dd {
  margin: 2px 0 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
}

.product-styles {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.product-styles li {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--cream);
  font-size: 0.75rem;
  color: #5b5651;
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.btn-quote,
.btn-details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  border-radius: var(--radius);
  font-family: "Work Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.btn-quote {
  flex-grow: 1;
  background: var(--ink);
  color: var(--cream);
}

.btn-quote:hover {
  background: var(--copper-dark);
  color: var(--white);
}

.btn-details {
  padding: 0 16px;
  border: 1px solid #d9d0c4;
  background: transparent;
  color: var(--text-dark);
  cursor: pointer;
}

.btn-details:hover {
  border-color: var(--text-dark);
}

/* Section intro (lead paragraph under a title) */
.section-intro {
  text-align: center;
  max-width: 680px;
  margin: -20px auto clamp(36px, 5vw, 56px);
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Proceso (banda oscura, estilo taller) */
.section-proceso {
  background: var(--ink);
  color: var(--cream);
  padding: var(--section-pad) 0;
}

.proceso-layout {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 48px;
  align-items: start;
}

.proceso-intro {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.proceso-intro .section-title {
  color: var(--cream);
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  margin: 0;
}

.proceso-intro p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(243, 237, 227, 0.72);
}

.proceso-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 6px;
}

.proceso-step {
  padding: 18px 0 0;
  border-top: 1px solid rgba(243, 237, 227, 0.2);
}

.proceso-num {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1;
  color: var(--copper-light);
  margin-bottom: 12px;
}

.proceso-step h4 {
  font-family: "Work Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  margin: 0 0 8px;
}

.proceso-step p {
  color: rgba(243, 237, 227, 0.7);
  font-size: 0.85rem;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 991px) {
  .proceso-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .proceso-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .proceso-grid {
    grid-template-columns: 1fr;
  }
}

/* Guide Section */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.guide-item {
  background: var(--white);
  border: 1px solid var(--gray-border);
  padding: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.guide-item:hover {
  border-color: var(--copper);
  box-shadow: 0 5px 20px rgba(184, 115, 51, 0.1);
}

.guide-item h4 {
  color: var(--ink);
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.guide-item p {
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.guide-item p:last-child {
  margin-bottom: 0;
}

.guide-item strong {
  color: var(--text-dark);
}

.guide-cta {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.guide-cta a {
  color: var(--copper);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.guide-cta a:hover {
  color: var(--copper-dark);
}

@media (max-width: 768px) {
  .guide-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Form */
.contact-form .form-control {
  background: var(--white);
  border: 1px solid var(--gray-border);
  color: var(--text-dark);
  padding: 14px 16px;
  border-radius: var(--radius);
}

.contact-form .form-control:focus {
  background: var(--white);
  border-color: var(--copper);
  color: var(--text-dark);
  box-shadow: 0 0 0 3px rgba(184, 115, 51, 0.1);
}

.contact-form .form-control::placeholder {
  color: var(--text-secondary);
}

.contact-info {
  padding: 20px 0;
}

.contact-info h4 {
  color: var(--copper);
  margin-bottom: 15px;
}

.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.contact-location {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-border);
}

.contact-location p {
  margin-bottom: 5px;
}

/* Footer */
footer {
  background: var(--ink);
  padding: 40px 0;
  text-align: center;
}

footer img {
  margin-bottom: 15px;
}

footer p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.9rem;
}

/* Modal */
.modal-content {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modal-body {
  padding: 30px;
}

.btn-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
}

.modal-product-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

#modalTitle {
  color: var(--ink);
  font-size: 2.2rem;
  margin-bottom: 12px;
}

#modalDescription {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Specs List */
.specs-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.specs-list li {
  background: var(--cream);
  border: 1px solid var(--gray-border);
  color: var(--copper-dark);
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 3px;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
}

/* Responsive */
@media (min-width: 1200px) {
  .product-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 991px) {
  .hero-photo {
    width: 100%;
    height: 58vh;
    object-position: 55% 40%;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(20, 18, 16, 0.55) 0%, rgba(20, 18, 16, 0.1) 26%, rgba(20, 18, 16, 0.92) 48%, var(--ink) 58%);
  }

  .hero-inner {
    padding-top: 0;
  }

  .hero-content {
    margin: 40vh 0 0;
  }

  .hero-proof {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 24px;
  }

  .nav-cta {
    display: inline-block;
    margin: 8px 0 0 16px;
  }

  .catalog-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .catalog-filters {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-media img {
    height: 200px;
  }

  .modal-body .row {
    flex-direction: column;
  }

  .modal-body .col-md-6 {
    width: 100%;
  }

  .modal-product-img {
    margin-bottom: 20px;
  }
}

/* WhatsApp Flotante */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background: #128C7E;
  color: var(--white);
  transform: scale(1.1);
}

/* Scroll to Top */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--copper);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--copper-dark);
  transform: translateY(-3px);
}

/* Fade In Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Instagram Link */
.instagram-link {
  color: var(--copper);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.instagram-link:hover {
  color: var(--copper-dark);
}

/* Footer Social */
.footer-social {
  display: inline-block;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 15px;
  transition: color 0.3s ease;
}

.footer-social:hover {
  color: var(--copper);
}

/* Responsive adjustments for floating buttons */
@media (max-width: 576px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }

  .scroll-top {
    bottom: 85px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

/* ---------- Look editorial: bloques nuevos ---------- */

/* Cabecera de sección (eyebrow + título) */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.section-head .section-title {
  margin: 0;
}

.link-arrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--copper-dark);
  border-bottom: 1px solid var(--copper-dark);
  padding-bottom: 2px;
  white-space: nowrap;
}

.link-arrow:hover {
  color: var(--ink);
  border-color: var(--ink);
}

/* Tiles por formato */
.section-formatos {
  background: var(--cream);
  padding: var(--section-pad) 0 0;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.format-tile {
  position: relative;
  display: block;
  height: 240px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
}

.format-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 0.5s var(--ease), opacity 0.3s var(--ease);
}

.format-tile:hover img {
  transform: scale(1.05);
  opacity: 1;
}

.format-tile-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 60px 18px 18px;
  background: linear-gradient(180deg, rgba(22, 19, 15, 0) 0%, rgba(22, 19, 15, 0.9) 100%);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.format-tile-label strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
}

.format-tile-label span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper-light);
}

/* Perfil de tono */
.tone-profile {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 0;
  border-top: 1px solid #e6dccb;
  border-bottom: 1px solid #e6dccb;
}

.tone-title {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6f6861;
}

.tone-title em {
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.tone-bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tone-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tone-label {
  width: 52px;
  flex-shrink: 0;
  font-size: 0.75rem;
  color: #6f6861;
}

.tone-track {
  flex-grow: 1;
  height: 6px;
  background: #e6dccb;
  border-radius: 3px;
  overflow: hidden;
}

.tone-fill {
  display: block;
  height: 100%;
  background: var(--copper);
}

.tone-row--out {
  margin-top: 2px;
}

.tone-row--out strong {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
}

.tone-pips {
  display: flex;
  gap: 4px;
}

.tone-pip {
  width: 18px;
  height: 8px;
  border-radius: 2px;
  background: #e6dccb;
}

.tone-pip.on {
  background: var(--copper);
}

.tone-profile--compact .tone-bars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.tone-profile--compact .tone-bars .tone-row {
  flex-direction: column;
  align-items: stretch;
  gap: 5px;
}

.tone-profile--compact .tone-bars .tone-label {
  width: auto;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.modal-body .tone-profile {
  margin-bottom: 20px;
}

/* Demos (reels) */
.demo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.demo-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 4px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.demo-card:hover {
  border-color: var(--copper);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  color: var(--ink);
}

.demo-thumb {
  position: relative;
  width: 76px;
  height: 96px;
  flex-shrink: 0;
  border-radius: 2px;
  overflow: hidden;
  background: var(--ink);
}

.demo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.demo-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.demo-text strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
}

.demo-text span {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

@media (max-width: 1199px) {
  .format-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .demo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .format-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .format-tile {
    height: 170px;
  }

  .demo-grid {
    grid-template-columns: 1fr;
  }

  .tone-profile--compact .tone-bars {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .tone-profile--compact .tone-bars .tone-row {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .tone-profile--compact .tone-bars .tone-label {
    width: 52px;
  }
}

/* Modal: pestañas, imanes y línea custom */
#modalEyebrow {
  display: block;
  margin-bottom: 8px;
}

.modal-tabs {
  border-bottom: 1px solid var(--gray-border);
  margin: 4px 0 18px;
  gap: 4px;
}

.modal-tabs .nav-link {
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  padding: 10px 14px;
  font-family: "Work Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: transparent;
}

.modal-tabs .nav-link:hover {
  color: var(--ink);
}

.modal-tabs .nav-link.active {
  color: var(--ink);
  border-bottom-color: var(--copper);
  background: transparent;
}

.modal-panes {
  min-height: 200px;
  margin-bottom: 20px;
}

.modal-body .tone-profile {
  margin-bottom: 16px;
  border-top: none;
  padding-top: 0;
}

.modal-styles {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.magnet-intro {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin: 0 0 14px;
}

.magnet-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.magnet-item {
  padding: 12px 14px;
  background: var(--cream);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
}

.magnet-item strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.magnet-item p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.magnet-note {
  margin: 14px 0 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.modal-custom {
  margin: 16px 0 0;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.modal-custom a {
  color: var(--copper-dark);
  font-weight: 600;
}

.product-strings {
  align-self: flex-start;
  padding: 4px 10px;
  border: 1px solid var(--gray-border);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper-dark);
}

/* Reproductor de demos */
.demo-player {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.demo-sets {
  display: flex;
  flex-direction: column;
  background: var(--ink);
  padding: 12px;
  gap: 4px;
}

.demo-set-btn {
  text-align: left;
  padding: 16px 18px;
  border: none;
  border-radius: 4px;
  background: transparent;
  color: rgba(243, 237, 227, 0.72);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.demo-set-btn:hover {
  color: var(--cream);
}

.demo-set-btn.active {
  background: rgba(243, 237, 227, 0.1);
  color: var(--cream);
  box-shadow: inset 3px 0 0 var(--copper-light);
}

.demo-stage {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px 32px 26px;
}

.demo-set-title {
  font-size: 1.75rem;
  margin: 0 0 6px;
}

.demo-set-desc {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 640px;
}

.demo-clips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.demo-clip-btn {
  height: 42px;
  padding: 0 16px;
  border: 1px solid #d9d0c4;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-family: "Work Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.demo-clip-btn:hover {
  border-color: var(--ink);
}

.demo-clip-btn.active {
  background: var(--copper-dark);
  border-color: var(--copper-dark);
  color: var(--white);
}

.demo-transport {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid #ede6dc;
}

.demo-play-btn {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.demo-play-btn:hover {
  background: var(--copper-dark);
  transform: scale(1.05);
}

.demo-play-btn .icon-pause,
.demo-play-btn.playing .icon-play {
  display: none;
}

.demo-play-btn.playing .icon-pause {
  display: block;
}

.demo-progress {
  flex-grow: 1;
  height: 8px;
  background: #e6dccb;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}

.demo-progress:focus-visible {
  outline-offset: 4px;
}

.demo-progress-fill {
  display: block;
  width: 0;
  height: 100%;
  background: var(--copper);
  transition: width 0.15s linear;
}

.demo-time {
  flex-shrink: 0;
  font-size: 0.8rem;
  font-variant-numeric: tabular-nums;
  color: var(--text-secondary);
  min-width: 90px;
  text-align: right;
}

.demo-now {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper-dark);
}

.demo-subhead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.demo-subhead h3 {
  font-size: 1.5rem;
  margin: 0;
}

.product-demo-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--copper-dark);
  text-decoration: none;
}

.product-demo-link:hover {
  color: var(--ink);
}

.product-demo-link--modal {
  margin-top: 8px;
}

@media (max-width: 991px) {
  .demo-player {
    grid-template-columns: 1fr;
  }

  .demo-sets {
    flex-direction: row;
    overflow-x: auto;
  }

  .demo-set-btn {
    white-space: nowrap;
    padding: 12px 16px;
    font-size: 1rem;
  }
}

@media (max-width: 575px) {
  .demo-stage {
    padding: 20px;
  }

  .demo-time {
    min-width: 0;
  }
}
