/* ==========================================================================
   Camisas Carrera — Sistema visual editorial
   ========================================================================== */

:root {
  --cc-bordo: #5c0000;
  --cc-bordo-header: #7c0002;
  --cc-bordo-dark: #2c0001;
  --cc-bordo-accent: #810000;
  --cc-link: #770002;
  --cc-white: #ffffff;
  --cc-text: #474f51;
  --cc-text-heading: #373f42;
  --cc-text-muted: #96a9b5;
  --cc-text-light: #a0a8ab;
  --cc-surface: #f7f7f7;
  --cc-surface-warm: #f3f1ef;
  --cc-surface-dark: #333333;
  --cc-border: #e2e6e8;
  --cc-border-subtle: #d4d0cc;
  --cc-copyright-text: #ffd8d9;
  --cc-whatsapp: #2a8f5c;
  --cc-whatsapp-hover: #236f49;
  --cc-whatsapp-icon: #ffffff;
  --cc-whatsapp-ring: #5a6268;
  --cc-radius: 2px;
  --cc-max-width: 1200px;
  --cc-read-width: 42rem;
  --cc-section-pad: clamp(3rem, 6vw, 5rem);
  --cc-transition: 0.25s ease;
  --cc-font: 'Roboto Condensed', system-ui, -apple-system, sans-serif;
}

/* --- Accesibilidad --- */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--cc-bordo-header);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* --- Tipografía base --- */

body {
  font-family: var(--cc-font);
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.75;
  color: var(--cc-text);
  -webkit-font-smoothing: antialiased;
}

/* --- Header --- */

#header {
  border-bottom: 1px solid transparent;
}

#header.scrolled {
  background: rgba(44, 0, 1, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

#header > .container {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

#header .site-logo {
  position: static;
  font-size: 0;
  line-height: 0;
}

#header .site-logo a {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

#header .site-logo img {
  display: block;
  height: auto;
  max-height: 52px;
  width: auto;
}

#header nav {
  position: static;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  bottom: auto;
}

#header nav a {
  position: relative;
  margin-left: 0;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cc-white);
  border-radius: var(--cc-radius);
  transition: color var(--cc-transition), background var(--cc-transition);
}

#header nav a:hover {
  color: var(--cc-copyright-text);
}

#header nav a.is-active {
  color: var(--cc-white);
}

#header nav a.is-active::after {
  content: '';
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.25rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
}

#header nav a:focus-visible {
  outline-color: var(--cc-white);
}

/* Subpáginas: header institucional */
.subpage #header,
.subpage #header.scrolled {
  position: relative !important;
  background: var(--cc-bordo-header) url("images/bg05.jpg") center center / cover no-repeat !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.5);
}

.subpage #header > .container {
  min-height: 88px !important;
  height: auto !important;
  align-items: center !important;
  padding: 0.75rem 0 !important;
}

.subpage #header nav {
  position: static !important;
  bottom: auto !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.25rem !important;
  font-weight: 400 !important;
}

.subpage #header nav a {
  position: relative !important;
  margin-left: 0 !important;
  padding: 0.5rem 1rem !important;
  font-size: 0.95rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  border-radius: var(--cc-radius) !important;
  color: var(--cc-white) !important;
  outline: 0 !important;
  transition: color var(--cc-transition), background var(--cc-transition) !important;
}

.subpage #header nav a:hover {
  color: var(--cc-copyright-text) !important;
}

.subpage #header nav a.is-active {
  color: var(--cc-white) !important;
}

.subpage #header .site-logo {
  position: static !important;
  bottom: auto !important;
  font-size: 0 !important;
  line-height: 0 !important;
}

.subpage #header nav a.is-active::after {
  background: rgba(255, 255, 255, 0.85);
}

/* --- Banner (imágenes intactas) --- */

#banner {
  position: relative;
  background: var(--cc-surface-dark);
}

#banner .bordered-feature-image,
#banner .bordered-feature-image2 {
  background: transparent;
  box-shadow: none;
  padding: 0;
  margin: 0;
  line-height: 0;
}

#banner .bordered-feature-image img,
#banner .bordered-feature-image2 img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

#banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4rem;
  background: linear-gradient(to bottom, transparent, var(--cc-surface-dark));
  pointer-events: none;
}

/* --- Features editorial (home) --- */

#features {
  background: var(--cc-surface-dark) url("../../images/fondo-gris.webp") center / cover no-repeat;
  border-bottom: 1px solid #272e31;
  padding: var(--cc-section-pad) 0;
  color: var(--cc-text-light);
  text-shadow: none;
}

.features-editorial {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.feature-item {
  padding: 2rem 1.75rem;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.feature-item:nth-child(3n) {
  border-right: none;
}

.feature-item:nth-last-child(-n+3) {
  border-bottom: none;
}

.feature-item__media {
  margin-bottom: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-item__media img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.feature-item:hover .feature-item__media img {
  transform: scale(1.02);
}

#features h2 {
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--cc-white);
  margin: 0 0 0.5rem;
  text-shadow: none;
}

#features p {
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
  color: #c5cdd1;
  text-shadow: none;
}

#features .bordered-feature-image3 {
  background: transparent;
  box-shadow: none;
  padding: 0;
  margin: 0 0 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* --- Contenido home integrado --- */

#content.home-content {
  background: var(--cc-surface);
  border-top: 1px solid var(--cc-white);
  padding: var(--cc-section-pad) 0;
}

#content.home-content > .container > .row {
  margin-top: 0;
  margin-left: 0;
  gap: 0;
  border: 1px solid var(--cc-border);
  background: var(--cc-white);
}

#content.home-content > .container > .row > [class*="col-"] {
  padding: 0;
}

#content.home-content section {
  background: transparent;
  box-shadow: none;
  margin: 0;
  padding: clamp(2rem, 4vw, 3rem);
  height: 100%;
  border-right: 1px solid var(--cc-border);
}

#content.home-content > .container > .row > [class*="col-"]:last-child section {
  border-right: none;
}

#content.home-content h2 {
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--cc-text-heading);
  margin: 0 0 0.35rem;
}

#content.home-content h3 {
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cc-text-muted);
  margin: 0;
}

#content.home-content header {
  margin: 0 0 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--cc-border);
}

#content.home-content .feature-image {
  margin: 0 0 1.5rem;
}

#content.home-content .feature-image img {
  display: block;
  width: 100%;
  height: auto;
}

#content.home-content .quote-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--cc-border);
  overflow: visible;
}

#content.home-content .quote-list li:last-child {
  border-bottom: none;
}

#content.home-content .quote-list li img {
  float: none;
  flex-shrink: 0;
  width: 56px;
  height: auto;
}

#content.home-content .quote-list li p {
  margin: 0;
  font-size: 0.95rem;
  font-style: normal;
  line-height: 1.4;
}

#content.home-content .clients-panel .feature-image {
  margin: 0;
}

#content.home-content .clients-panel .feature-image img {
  width: 100%;
  height: auto;
}

/* --- Subpáginas: contenido --- */

.subpage #content {
  background: var(--cc-surface);
  padding: var(--cc-section-pad) 0;
  border-top: none;
}

.subpage #content section {
  background: transparent;
  box-shadow: none;
  padding: 0;
  margin: 0;
}

.subpage #content.camisas-page #features2.camisas-catalog-section {
  background: var(--cc-white);
  background-image: none;
  padding: 0;
  margin: 0;
  box-shadow: none;
}

.subpage #content h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--cc-text-heading);
  margin: 0 0 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--cc-bordo);
  display: inline-block;
}

.subpage #content .subpage__header {
  margin: 0 0 1.75rem;
  margin-left: 0;
  padding-bottom: 1.25rem;
  padding-left: 0;
  border-bottom: 1px solid var(--cc-border);
}

.subpage #content .subpage__header h1 {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--cc-text-heading);
  margin: 0;
  margin-left: 0;
  padding: 0;
  padding-left: 0;
  border: none;
}

/* Subpáginas con bloques (Empresa, Camisas) */
.subpage #content.empresa-page {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 0 clamp(1.75rem, 3vw, 2.5rem);
  background: var(--cc-surface);
}

.subpage #content.camisas-page {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 0 clamp(1.75rem, 3vw, 2.5rem);
  background: var(--cc-white);
  background-image: none;
}

.subpage #content.contacto-page {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 0 clamp(1.75rem, 3vw, 2.5rem);
  background: var(--cc-white);
  background-image: none;
}

.empresa-intro,
.camisas-intro,
.contacto-intro {
  background: var(--cc-white);
  padding: clamp(2.5rem, 5vw, 4rem) 0 0;
}

.empresa-gallery {
  padding: 0 0 clamp(2.5rem, 5vw, 4rem);
  background: var(--cc-surface-warm);
}

.camisas-catalog-section {
  padding: 0 0 clamp(2.5rem, 5vw, 4rem);
  background: var(--cc-white);
}

.empresa-gallery__body-wrap {
  background: var(--cc-white);
  padding: 0 0 clamp(2rem, 4vw, 3rem);
  margin: 0 0 clamp(1.75rem, 3vw, 2.5rem);
}

/* Empresa */

.empresa-intro__body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.empresa-intro__copy {
  min-width: 0;
}

.empresa-intro__figure {
  margin: 0;
  border: 1px solid var(--cc-border);
  background: var(--cc-white);
  overflow: hidden;
}

.empresa-intro__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.empresa-prose {
  max-width: var(--cc-read-width);
  margin: 0;
}

.empresa-prose p {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--cc-text);
}

.empresa-prose p:last-child {
  margin-bottom: 0;
}

.empresa-prose strong {
  color: var(--cc-text-heading);
  font-weight: 400;
}

.empresa-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.empresa-gallery__item {
  background: var(--cc-white);
  border: 1px solid var(--cc-border);
  overflow: hidden;
}

.empresa-gallery__item a {
  display: block;
  position: relative;
  line-height: 0;
}

.empresa-gallery__item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: opacity var(--cc-transition), transform 0.4s ease;
}

.empresa-gallery__item a:hover img {
  opacity: 0.92;
  transform: scale(1.02);
}

@media (prefers-reduced-motion: reduce) {
  .empresa-gallery__item a:hover img {
    transform: none;
  }
}

.empresa-gallery__item a:focus-visible {
  outline-offset: -2px;
}

.empresa-gallery__item--video a::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 48px;
  height: 48px;
  margin: -24px 0 0 -24px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  border: 2px solid rgba(255, 255, 255, 0.85);
  pointer-events: none;
}

.empresa-gallery__item--video a::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -6px 0 0 -4px;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.95);
  z-index: 1;
  pointer-events: none;
}

/* Galería empresa (legado) */
.gallery-editorial {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--cc-border);
  border: 1px solid var(--cc-border);
}

.gallery-editorial__item {
  background: var(--cc-white);
  overflow: hidden;
}

.gallery-editorial__item a {
  display: block;
  line-height: 0;
}

.gallery-editorial__item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: opacity var(--cc-transition);
}

.gallery-editorial__item a:hover img {
  opacity: 0.88;
}

.gallery-editorial__item a:focus-visible {
  outline-offset: -2px;
}

/* --- Camisas: grilla técnica --- */

#features2.camisas-catalog-section {
  padding: 0;
  background: var(--cc-white);
  background-image: none;
  margin: 0;
  box-shadow: none;
}

.camisas-catalog {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--cc-border);
  background: var(--cc-border);
}

.camisa-model {
  background: var(--cc-white);
  padding: 2rem 1.75rem;
  display: grid;
  grid-template-columns: minmax(140px, 42%) 1fr;
  gap: 1.5rem;
  align-items: start;
}

.camisa-model__image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border: 1px solid var(--cc-border-subtle);
  background: var(--cc-surface-warm);
}

.camisa-model__image img {
  display: block;
  max-width: 100%;
  height: auto;
}

.camisa-model__info h3 {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cc-text-heading);
  margin: 0 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--cc-border);
}

.camisa-model__specs {
  list-style: none;
  margin: 0;
  padding: 0;
}

.camisa-model__specs li {
  position: relative;
  padding: 0.2rem 0 0.2rem 1rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--cc-text);
}

.camisa-model__specs li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--cc-text-muted);
}

/* Reset legacy features2 card styles */
#features2.camisas-catalog-section section,
#features2.camisas-catalog-section .camisa-model {
  background: var(--cc-white);
  border: none;
  box-shadow: none;
  border-radius: 0;
  text-align: left;
  height: auto;
  transition: background var(--cc-transition);
}

#features2.camisas-catalog-section .bordered-feature-image3 {
  background: transparent;
  box-shadow: none;
  border: none;
  margin: 0;
  padding: 0;
}

#features2.camisas-catalog-section section p,
#features2.camisas-catalog-section .camisa-model__specs li {
  margin: 0;
  margin-left: 0;
  padding-left: 0;
  text-decoration: none;
}

#features2.camisas-catalog-section .camisa-model__specs li {
  padding: 0.2rem 0 0.2rem 1rem;
}

#features2.camisas-catalog-section section p::before,
#features2.camisas-catalog-section .camisa-model p::before {
  display: none;
}

#features2.camisas-catalog-section .camisa-model__specs li::before {
  content: '•';
  color: var(--cc-text-muted);
}

#features2.camisas-catalog-section strong {
  color: var(--cc-text-heading);
}

/* --- Contacto --- */

#aviso-visitantes {
  position: relative;
  width: 100%;
  background-color: var(--cc-bordo);
  color: var(--cc-white);
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.6;
  z-index: 100;
  border-top: 1px solid var(--cc-bordo-accent);
  border-bottom: 1px solid var(--cc-bordo-dark);
}

#aviso-visitantes__inner {
  padding: 1rem 2.5rem;
  max-width: var(--cc-max-width);
  margin: 0 auto;
}

#aviso-visitantes__icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
  color: #ffd700;
}

#cerrar-aviso {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--cc-white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: var(--cc-radius);
}

#cerrar-aviso:hover {
  background: rgba(255, 255, 255, 0.1);
}

#cerrar-aviso:focus-visible {
  outline-color: var(--cc-white);
}

.contacto-content {
  padding: 0 0 clamp(2.5rem, 5vw, 4rem);
  background: var(--cc-white);
}

.contacto-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 42%);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: stretch;
}

.contacto-datos {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--cc-border);
  background: var(--cc-white);
}

.contacto-item {
  display: grid;
  grid-template-columns: minmax(7.5rem, 9.5rem) minmax(0, 1fr);
  gap: 0.75rem 1.5rem;
  align-items: baseline;
  padding: 1.15rem 1.5rem;
  border-bottom: 1px solid var(--cc-border);
}

.contacto-item:last-child {
  border-bottom: none;
}

.contacto-item__label {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cc-text-muted);
  line-height: 1.4;
}

.contacto-item__value {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--cc-text-heading);
  word-break: break-word;
}

.contacto-item__value a {
  color: var(--cc-link);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--cc-transition), color var(--cc-transition);
}

.contacto-item__value a:hover {
  border-bottom-color: var(--cc-link);
}

.contacto-mapa {
  border: 1px solid var(--cc-border);
  overflow: hidden;
  background: var(--cc-white);
  min-height: 100%;
}

.contacto-mapa iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
}

/* --- Footer / copyright --- */

#copyright {
  background: var(--cc-bordo) url("images/bg03.jpg");
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: none;
  padding: 2rem 1.5rem;
  font-size: 0.9rem;
  line-height: 1.7;
}

#copyright a:not(.spindel-credit) {
  text-decoration: none;
  border-bottom: none;
  transition: opacity var(--cc-transition);
}

#copyright a:not(.spindel-credit):hover {
  opacity: 0.85;
}

@media screen and (max-width: 736px) {
  #copyright .copyright-sep {
    display: none;
  }

  #copyright a.spindel-credit {
    flex-basis: 100%;
    margin-top: 0.5em;
  }
}

/* --- WhatsApp flotante --- */

.whatsapp-float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 1.25rem;
  right: 1.25rem;
  background: linear-gradient(145deg, #5a6268 0%, #3d4449 100%);
  color: #ffffff;
  border-radius: 50%;
  border: 1px solid rgba(90, 98, 104, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
  z-index: 90;
  transition: background var(--cc-transition), border-color var(--cc-transition), transform var(--cc-transition), box-shadow var(--cc-transition);
}

.whatsapp-float:hover {
  background: linear-gradient(145deg, #6a7379 0%, #4a5258 100%);
  border-color: rgba(61, 68, 73, 0.85);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.26);
}

.whatsapp-float:focus-visible {
  outline: 2px solid var(--cc-whatsapp-ring);
  outline-offset: 3px;
}

.whatsapp-icon-svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
  color: #ffffff;
  display: block;
}

.whatsapp-icon-svg path {
  fill: currentColor;
}

/* --- Revelado al scroll --- */

.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* --- Mobile nav: botón hamburguesa --- */

@media screen and (max-width: 980px) {
  #page-wrapper {
    padding-top: 86px;
    transition: transform 0.5s ease;
    backface-visibility: hidden;
  }

  #titleBar {
    height: 86px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20000;
    background: linear-gradient(to bottom, rgba(83, 0, 0, 1), rgba(104, 0, 0, 1));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.5s ease;
    backface-visibility: hidden;
  }

  #titleBar .toggle {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    font: inherit;
    color: inherit;
  }

  #titleBar .title {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 100% !important;
    padding: 0 44px !important;
    line-height: 1 !important;
    margin: 0;
    text-decoration: none;
    color: inherit;
  }

  #titleBar .title img {
    max-height: 40px;
    width: auto;
    height: auto;
    display: block;
  }

  #navPanel {
    transition: transform 0.5s ease;
    transform: translateX(-200px);
    pointer-events: none;
  }

  body.navPanel-visible #page-wrapper,
  body.navPanel-visible #titleBar {
    transform: translateX(200px);
  }

  body.navPanel-visible #navPanel {
    transform: translateX(0);
    pointer-events: auto;
  }

  #navPanel .link {
    text-transform: uppercase;
    font-size: 0.95em;
    line-height: 2.2em;
  }

  .features-editorial {
    grid-template-columns: 1fr;
  }

  .feature-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .feature-item:last-child {
    border-bottom: none;
  }

  #content.home-content > .container > .row {
    border: none;
    background: transparent;
    gap: 1px;
  }

  #content.home-content section {
    border-right: none;
    border: 1px solid var(--cc-border);
    margin-bottom: 0;
    background: var(--cc-white);
  }

  .gallery-editorial {
    grid-template-columns: repeat(2, 1fr);
  }

  .empresa-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .empresa-intro__figure {
    display: none;
  }

  .camisas-catalog {
    grid-template-columns: 1fr;
  }

  .camisa-model {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contacto-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contacto-item {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding: 1rem 1.25rem;
  }

  .contacto-mapa iframe {
    min-height: 280px;
  }

  .whatsapp-float {
    width: 46px;
    height: 46px;
    bottom: 1rem;
    right: 1rem;
  }

  .whatsapp-icon-svg {
    width: 21px;
    height: 21px;
  }
}

@media screen and (max-width: 736px) {
  #banner::after {
    height: 2.25rem;
  }

  #features {
    padding-top: 1.875rem;
    padding-bottom: var(--cc-section-pad);
  }

  #banner .bordered-feature-image2.banner-carousel-wrap {
    aspect-ratio: auto;
    overflow: visible;
  }

  #banner .bordered-feature-image2.banner-carousel-wrap img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .feature-item:first-child {
    padding-top: 1.625rem;
  }

  .gallery-editorial {
    grid-template-columns: 1fr;
  }

  .empresa-gallery__grid {
    grid-template-columns: 1fr;
  }

  #aviso-visitantes {
    font-size: 0.78rem;
  }

  #aviso-visitantes__inner {
    padding: 0.85rem 2.25rem 0.85rem 1rem;
  }
}

@media screen and (min-width: 981px) {
  #banner::after {
    height: 1.5rem;
  }

  #features {
    padding-top: 1.25rem;
    padding-bottom: var(--cc-section-pad);
    margin-top: 0;
  }

  .empresa-intro__body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 36%);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
  }

  .empresa-prose {
    max-width: none;
  }

  .features-editorial {
    grid-template-columns: repeat(3, 1fr);
  }

  .camisas-catalog {
    grid-template-columns: repeat(2, 1fr);
  }

  #content.home-content > .container > .row > .col-4 {
    display: flex;
    flex-direction: column;
  }

  #content.home-content > .container > .row > .col-4 > section {
    flex: 1;
  }
}

@media screen and (min-width: 1200px) {
  .camisas-catalog {
    grid-template-columns: repeat(2, 1fr);
  }
}
