/* Estilos base */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

/* Layout general */

.site-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

.site-main {
  flex: 1;
  padding-top: 2.5rem;   /* ~py-10 */
  padding-bottom: 3rem;  /* ~sm:py-12 */
}

.content-wrapper {
  width: 100%;
  max-width: 72rem; /* ~max-w-6xl */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;  /* ~px-4 */
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .content-wrapper {
    padding-left: 1.5rem;  /* ~sm:px-6 */
    padding-right: 1.5rem;
  }
}

/* Sección introductoria "Productos del mar seleccionados" */

.intro-section {
  background-color: rgba(241, 245, 249, 0.9); /* similar a bg-slate-100/90 */
  border-radius: 1rem;                        /* ~rounded-2xl */
  padding: 2.5rem 1.5rem;                     /* ~px-6 py-10 */
  text-align: center;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08); /* sombra suave */
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .intro-section {
    padding: 3rem 2.5rem;                     /* ~sm:px-10 sm:py-12 */
  }
}

.intro-inner {
  max-width: 80rem; /* ~max-w-3xl */
  margin-left: auto;
  margin-right: auto;
}

.intro-title {
  font-size: 1.75rem; /* ~text-2xl */
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em; /* tracking-tight */
  color: #0f172a; /* similar a text-slate-900 */
  margin: 0 0 1rem 0;
}

@media (min-width: 640px) {
  .intro-title {
    font-size: 4rem; /* ~sm:text-3xl */
  }
}

.intro-text {
  font-size: 1rem; /* ~text-base */
  color: #475569;  /* ~text-slate-700 */
  margin: 0;
}

@media (min-width: 640px) {
  .intro-text {
    font-size: 1.0625rem; /* ligero aumento ~text-lg */
  }
}

/* Utilidades sencillas por si las necesitas más adelante */

.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

/* HERO: franja con imagen de portada */

.hero-franja {
  width: 100%;
  height: 450px;                 /* altura de la franja en desktop */
  background-image: url('images/portada.png');
  background-size: cover;        /* que cubra todo el área */
  background-position: center;   /* centrada */
  background-repeat: no-repeat;
}

/* Ajuste para pantallas más pequeñas */
@media (max-width: 768px) {
  .hero-franja {
    height: 240px;               /* un poco menos alta en móvil */
  }
}

/* Utilidad genérica */
.hidden {
  display: none !important;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2e8f0; /* similar a border-slate-200 */
}

/* Contenedor interno del header */
.header-inner {
  max-width: 72rem; /* ~max-w-6xl */
  margin: 0 auto;
  padding: 0 1rem;
  height: 4rem; /* ~h-16 */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .header-inner {
    padding-left: 1.5rem; /* ~sm:px-6 */
    padding-right: 1.5rem;
  }
}

/* Logo y marca */
.header-logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.header-logo-img {
  height: 2.5rem; /* ~h-10 */
  width: auto;
  display: block;
}

/* Nombre + tagline */
.header-brand {
  display: none;
}

@media (min-width: 640px) {
  .header-brand {
    display: block;
  }
}

.header-company-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: #0c4a6e; /* similar a text-sky-900 */
}

.header-tagline {
  font-size: 0.7rem;
  color: #64748b; /* text-slate-500 */
  max-width: 16rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Navegación escritorio */
.main-nav {
  display: none;
}

@media (min-width: 768px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1e293b; /* text-slate-800 */
  }
}

.main-nav-link {
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.15s ease;
}

.main-nav-link:hover {
  background-color: #e5e7eb; /* hover:bg-slate-100 */
}

/* Columna derecha: buscador + boton móvil */
.header-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Buscador escritorio */
.header-search-form {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .header-search-form {
    display: flex;
  }
}

.header-search-input {
  width: 10rem; /* ~w-40 */
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem; /* text-xs */
  outline: none;
}

@media (min-width: 1024px) {
  .header-search-input {
    width: 13rem;      /* ~lg:w-52 */
    font-size: 0.875rem;
  }
}

.header-search-input:focus {
  border-color: #38bdf8;          /* sky-400 */
  box-shadow: 0 0 0 2px #bae6fd;  /* ring sky-400 suave */
}

.header-search-button {
  border: none;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  background-color: #0ea5e9; /* sky-500 */
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.25);
  transition: background-color 0.15s ease;
}

.header-search-button:hover {
  background-color: #0284c7; /* sky-600 */
}

/* Botón menú hamburguesa (móvil) */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background-color: #ffffff;
  padding: 0.4rem;
  color: #334155; /* text-slate-700 */
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.15);
  cursor: pointer;
}

.icon-hamburger {
  width: 1.25rem;
  height: 1.25rem;
}

@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* Menú móvil */
.mobile-menu {
  border-top: 1px solid #e2e8f0;
  background-color: rgba(255, 255, 255, 0.95);
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.75rem 1rem 1rem;
}

@media (min-width: 640px) {
  .mobile-menu-inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* Links menú móvil */
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1e293b;
}

.mobile-nav-link {
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.15s ease;
}

.mobile-nav-link:hover {
  background-color: #e5e7eb;
}

/* Buscador móvil */
.mobile-search-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.5rem;
}

.mobile-search-input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  outline: none;
}

.mobile-search-input:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 2px #bae6fd;
}

.mobile-search-button {
  border: none;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  background-color: #0ea5e9;
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.25);
  transition: background-color 0.15s ease;
}

.mobile-search-button:hover {
  background-color: #0284c7;
}

/* SECCIÓN CATEGORÍAS */

.categories-section {
  background-color: #e5f4f7;
  padding: 2.5rem 0 3rem; /* parecido a py-10 / py-14 */
}

.categories-title-chip {
  display: inline-block;
  background-color: #0ea5e9;
  border-radius: 999px; /* redondeado tipo pastilla */
  padding: 0.6rem 1.4rem;
}



@media (min-width: 640px) {
  .categories-section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

.categories-container {
  max-width: 72rem; /* opcional, por si la sección se usa fuera de content-wrapper */
  margin: 0 auto;
}

/* Encabezado */

.categories-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

@media (min-width: 768px) {
  .categories-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.categories-header-text {
  max-width: 48rem; /* ~max-w-3xl */
  margin: 0 auto;
}

.categories-title {
  margin: 0;
  font-size: 1.5rem; /* ~text-2xl */
  font-weight: 600;
  letter-spacing: -0.02em; /* tracking-tight */
  color: #ffffff; /* slate-900 */
}

@media (min-width: 640px) {
  .categories-title {
    font-size: 1.875rem; /* ~text-3xl */
  }
}

/* (opcional) pill de categorías disponibles */

.categories-pill-wrapper {
  display: flex;
  justify-content: flex-end;
}

.categories-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background-color: #ffffff;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  color: #334155;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.15);
}

.categories-pill-dot {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  margin-right: 0.4rem;
  background-color: #169cc0;
}

/* GRID de categorías */

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2 columnas incluso en móvil */
  gap: 1rem;
}

@media (min-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Tarjeta de categoría */

.category-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 1rem; /* ~rounded-2xl */
  background-color: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.6); /* border-slate-200/80 */
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.06);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px rgba(15, 23, 42, 0.18);
}

.category-card:focus-visible {
  outline: 2px solid #94a3b8;
  outline-offset: 2px;
}

/* Imagen de la tarjeta */

.category-card-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 75%; /* aspecto 4/3 (altura = 75% del ancho) */
  overflow: hidden;
}

.category-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover .category-card-image {
  transform: scale(1.05);
}

/* Placeholder cuando no hay imagen */

.category-card-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #94a3b8;
  background-color: #e5e7eb;
}

/* Pastilla con nombre de categoría */

.category-pill-wrapper {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #1e293b; /**/
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.35);
}

@media (min-width: 640px) {
  .category-pill {
    font-size: 0.875rem;
    padding: 0.4rem 1rem;
  }
}

/* ============================
   VISTA DE PRODUCTOS (categoría)
=============================== */

.products-section {
  margin-top: 1.25rem;  /* similar a space-y / separación con lo anterior */
  margin-bottom: 1.5rem;
}

/* Encabezado */

.products-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .products-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.products-header-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.products-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #94a3b8; /* slate-400 */
}

.products-title {
  font-size: 1.25rem; /* text-xl */
  font-weight: 600;
  color: #0c4a6e; /* sky-900 */
  margin: 0;
}

@media (min-width: 640px) {
  .products-title {
    font-size: 1.5rem; /* sm:text-2xl */
  }
}

.products-subtitle {
  font-size: 0.875rem;
  color: #475569; /* slate-600 */
  margin: 0;
}

.products-header-back {
  display: flex;
  align-items: flex-end;
}

/* Botón "Volver a categorías" */

.back-to-categories-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid #0c4a6e;
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0c4a6e;
  background-color: transparent;
  text-decoration: none;
  transition:
    background-color 0.15s ease,
    color 0.15s ease;
}

@media (min-width: 640px) {
  .back-to-categories-button {
    font-size: 0.875rem;
  }
}

.back-to-categories-button:hover {
  background-color: #e0f2fe; /* similar a sky-50 */
}

/* Estado sin productos */

.products-empty {
  border-radius: 1rem;
  border: 1px dashed #cbd5f5;
  background-color: #ffffff;
  padding: 1.25rem 1rem;
  font-size: 0.875rem;
  color: #64748b;
}

/* Grid de productos */

.products-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Tarjeta de producto */

.product-card {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #e2e8f0; /* slate-200 */
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.06);
  text-decoration: none;
  color: inherit;
  transition:
    box-shadow 0.15s ease,
    transform 0.15s ease;
}

.product-card:hover {
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.18);
  transform: translateY(-3px);
}

/* Imagen */

.product-card-image-wrapper {
  position: relative;
  height: 10rem; /* ~h-40 */
  background-color: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-card:hover .product-card-image {
  transform: scale(1.05);
}

.product-card-image-placeholder {
  font-size: 0.7rem;
  color: #94a3b8;
}

/* Pill de categoría dentro de la tarjeta */

.product-category-pill {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.1rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 600;
  background-color: #0ea5e9; /* sky-500 */
  color: #ffffff;
}

/* Cuerpo de la tarjeta */

.product-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.75rem 0.75rem 0.9rem;
}

@media (min-width: 640px) {
  .product-card-body {
    padding: 0.9rem 0.9rem 1rem;
  }
}

.product-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

@media (min-width: 640px) {
  .product-name {
    font-size: 1rem;
  }
}

/* Descripción con "line-clamp" ligero */

.product-desc {
  font-size: 0.8rem;
  color: #64748b;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;   /* 3 líneas máximo */
  line-clamp: 3;           /* standard property */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Footer: precio */

.product-card-footer {
  margin-top: 0.4rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.5rem;
}

.product-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0c4a6e;
}

/* Paginación */

.products-pagination {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
}

@media (min-width: 640px) {
  .products-pagination {
    font-size: 0.9rem;
  }
}

.pagination-button {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background-color: #ffffff;
  padding: 0.3rem 0.9rem;
  text-decoration: none;
  color: #0f172a;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.pagination-button:hover {
  background-color: #f1f5f9; /* slate-100 */
}

.pagination-button--disabled {
  border-color: #e5e7eb;
  background-color: #e5e7eb;
  color: #9ca3af;
  cursor: default;
}

.pagination-status {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background-color: #ffffff;
  padding: 0.3rem 0.9rem;
}

/* ============================
   SECCIÓN CONTACTO (formulario)
=============================== */

.contact-section {
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid #e2e8f0; /* similar a border-slate-200 */
}

.contact-form-wrapper {
  max-width: 48rem;
  margin: 0 auto;
}

.contact-form-card {
  background-color: #ffffff;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  padding: 1.25rem 1rem 1.5rem;
}

@media (min-width: 640px) {
  .contact-form-card {
    padding: 1.5rem 1.5rem 1.75rem;
  }
}

.contact-title {
  font-size: 1rem;
  font-weight: 600;
  color: #0c4a6e; /* sky-900 */
  margin: 0 0 0.25rem 0;
}

@media (min-width: 640px) {
  .contact-title {
    font-size: 3.125rem;
  }
}

.contact-subtitle {
  font-size: 0.8rem;
  color: #64748b;
  margin: 0;
}

@media (min-width: 640px) {
  .contact-subtitle {
    font-size: 0.9rem;
  }
}

.contact-form {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-form-row--two {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .contact-form-row--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.contact-input,
.contact-textarea {
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  outline: none;
  font-family: inherit;
}

.contact-textarea {
  width: 100%;
  min-height: 90px;
  resize: vertical;
}

.contact-input:focus,
.contact-textarea:focus {
  border-color: #38bdf8;          /* sky-400 */
  box-shadow: 0 0 0 2px #bae6fd;  /* anillo suave */
}

.contact-submit-button {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  background-color: #0ea5e9; /* sky-500 */
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.25);
  transition: background-color 0.15s ease, transform 0.1s ease;
}

.contact-submit-button:hover {
  background-color: #0284c7; /* sky-600 */
  transform: translateY(-1px);
}

/* ============================
   FOOTER
=============================== */

.site-footer {
  border-top: 1px solid #e2e8f0;
  background-color: #ffffff;
  font-size: 1rem;
  color: #64748b;
}

.footer-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.75rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .footer-inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

/* Columna izquierda: contacto */

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-contact-title {
  font-weight: 600;
  font-size: 1.1rem;
  color: #0c4a6e;
  margin-bottom: 0.25rem;
}

.footer-contact-line {
  margin: 0.1rem 0;
}

.footer-maps-link {
  display: inline-block;
  margin-top: 0.3rem;
  font-weight: 600;
  color: #0c4a6e;
  text-decoration: underline;
}

/* Columna derecha: copyright/meta */

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: left;
}

@media (min-width: 640px) {
  .footer-right {
    text-align: right;
  }
}

.footer-copy,
.footer-meta {
  margin: 0;
}

.footer-social {
  margin-top: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

@media (min-width: 640px) {
  .footer-social {
    justify-content: flex-end;
  }
}

.footer-social-label {
  font-size: 0.8rem;
  color: #94a3b8;
}

.footer-social-link {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #0c4a6e;
  background-color: #ffffff;
  transition:
    background-color 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease,
    transform 0.1s ease;
}

.footer-social-link:hover {
  background-color: #0ea5e9;
  color: #ffffff;
  border-color: #0ea5e9;
  transform: translateY(-1px);
}

.footer-social-icon {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}


/* ============================
   PÁGINA DE PROMOCIONES
=============================== */

.promos-main {
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}

/* HERO de promociones */

.promos-hero {
  padding-top: 2.5rem;
  padding-bottom: 3rem;
  color: #ffffff;
}

.promos-hero-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 1.25rem 1rem 1.5rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(10px);
}

@media (min-width: 640px) {
  .promos-hero-card {
    padding: 1.75rem 1.5rem 2rem;
  }
}

.promos-hero-title {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0;
}

@media (min-width: 640px) {
  .promos-hero-title {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .promos-hero-title {
    font-size: 2.1rem;
  }
}

.promos-hero-text {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  max-width: 32rem;
  color: rgba(239, 246, 255, 0.9);
}

@media (min-width: 640px) {
  .promos-hero-text {
    font-size: 0.9rem;
  }
}

.promos-hero-badges {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.promos-hero-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.35);
}

.promos-hero-badge--light {
  background-color: #ffffff;
  color: #0f172a;
}

.promos-hero-badge--accent {
  background-color: #0ea5e9;
  color: #ffffff;
}

/* Sección de listado de promociones */

.promos-section {
  margin-top: 1.5rem;
}

.promos-section-header {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .promos-section-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.promos-section-header-left {
  max-width: 40rem;
}

.promos-section-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0c4a6e;
  margin: 0;
}

@media (min-width: 640px) {
  .promos-section-title {
    font-size: 1.5rem;
  }
}

.promos-section-subtitle {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0.15rem 0 0 0;
}

.promos-section-count {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #94a3b8;
}

/* Grid de tarjetas */

.promos-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .promos-grid {
    gap: 1.25rem;
  }
}

@media (min-width: 768px) {
  .promos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Tarjeta de promoción */

.promo-card {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background-color: #ffffff;
  box-shadow: 0 5px 14px rgba(15, 23, 42, 0.09);
  transition:
    box-shadow 0.15s ease,
    transform 0.15s ease;
}

.promo-card:hover {
  box-shadow: 0 16px 26px rgba(15, 23, 42, 0.18);
  transform: translateY(-3px);
}

.promo-card-image-wrapper {
  position: relative;
  height: 10rem;
  background-color: #e2e8f0;
  overflow: hidden;
}

@media (min-width: 640px) {
  .promo-card-image-wrapper {
    height: 12rem;
  }
}

.promo-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.promo-card:hover .promo-card-image {
  transform: scale(1.05);
}

.promo-card-image-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #cbd5f5, #e5e7eb);
}

.promo-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.1), transparent);
}

/* Badges dentro de la imagen */

.promo-card-badges {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.promo-card-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.15rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.4);
}

.promo-card-badge--main {
  background-color: rgba(251, 191, 36, 0.95); /* amber-400 */
  color: #1f2933;
}

.promo-card-badge--price {
  background-color: rgba(14, 165, 233, 0.95); /* sky-500 */
  color: #ffffff;
}

/* Cuerpo de la tarjeta */

.promo-card-body {
  padding: 0.9rem 0.9rem 1.1rem;
}

@media (min-width: 640px) {
  .promo-card-body {
    padding: 1.1rem 1.1rem 1.25rem;
  }
}

.promo-title {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 0.2rem 0;
}

@media (min-width: 640px) {
  .promo-title {
    font-size: 1.1rem;
  }
}

.promo-desc {
  font-size: 0.8rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* Fecha / rango de la promo */

.promo-date-pill {
  display: inline-flex;
  align-items: center;
  margin-top: 0.5rem;
  padding: 0.25rem 0.9rem;
  font-size: 0.7rem;
  color: #92400e;
  background-color: #fffbeb;
  border-radius: 999px;
  border: 1px solid #fef3c7;
}

/* Productos asociados */

.promo-products {
  margin-top: 0.75rem;
  padding-top: 0.55rem;
  border-top: 1px solid #e2e8f0;
}

.promo-products-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.25rem;
}

.promo-products-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.78rem;
  color: #475569;
}

.promo-products-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  padding: 0.25rem 0.35rem;
  background-color: #f8fafc;
  border-radius: 0.5rem;
}

.promo-products-name {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.promo-products-unit {
  font-size: 0.7rem;
  color: #94a3b8;
  margin-left: 0.25rem;
}

.promo-products-price {
  font-size: 0.75rem;
  font-weight: 600;
  color: #0369a1;
  white-space: nowrap;
}

/* Cuando no hay productos asociados */

.promo-no-products {
  margin-top: 0.75rem;
  font-size: 0.7rem;
  color: #9ca3af;
  font-style: italic;
}

/* Botones de acción */

.promo-actions {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.promo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease;
}

.promo-button--primary {
  background-color: #0ea5e9;
  color: #ffffff;
  border: 1px solid #0ea5e9;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.25);
}

.promo-button--primary:hover {
  background-color: #0284c7;
  border-color: #0284c7;
}

.promo-button--outline {
  background-color: #ffffff;
  color: #334155;
  border: 1px solid #cbd5e1;
}

.promo-button--outline:hover {
  background-color: #f8fafc;
}

/* Estado sin promociones */

.promos-empty {
  grid-column: 1 / -1;
  border-radius: 1rem;
  border: 1px dashed #cbd5f5;
  background-color: #ffffff;
  padding: 1.25rem 1rem;
  font-size: 0.875rem;
  color: #64748b;
}

/* ============================
   OVERLAY PROMOCIONAL
=============================== */

.promo-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background-color: rgba(15, 23, 42, 0.7); /* fondo oscuro */
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 3rem 1rem;
}

@media (min-width: 768px) {
  .promo-overlay {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.promo-overlay-inner {
  width: 100%;
  max-width: 28rem; /* más compacto */
  margin: 0 auto;
}

@media (min-width: 768px) {
  .promo-overlay-inner {
    max-width: 34rem; /* un poco más ancho en desktop */
  }
}

.promo-overlay-card {
  position: relative;
  background-color: #ffffff;
  border-radius: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.35);
  overflow: hidden;
  animation: promo-overlay-pop 0.22s ease-out;
}

/* animación suave al aparecer */
@keyframes promo-overlay-pop {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Botón cerrar arriba a la derecha, flotando */

.promo-overlay-close {
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: none;
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.35);
  cursor: pointer;
}

/* Imagen */

.promo-overlay-image-wrapper {
  position: relative;
  width: 100%;
  height: 9.5rem; /* menos alto que antes */
  background-color: #e5e7eb;
  overflow: hidden;
}

@media (min-width: 768px) {
  .promo-overlay-image-wrapper {
    height: 11rem;
  }
}

.promo-overlay-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Pill sobre la imagen */

.promo-overlay-pill-wrapper {
  position: absolute;
  left: 0.9rem;
  bottom: 0.9rem;
}

.promo-overlay-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.25rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.4);
}

/* Contenido de la tarjeta */

.promo-overlay-body {
  padding: 1.1rem 1rem 1.25rem;
}

@media (min-width: 640px) {
  .promo-overlay-body {
    padding: 1.25rem 1.25rem 1.4rem;
  }
}

.promo-overlay-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.4rem 0;
}

@media (min-width: 640px) {
  .promo-overlay-title {
    font-size: 1.1rem;
  }
}

.promo-overlay-text {
  font-size: 0.82rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

.promo-overlay-price-pill {
  display: inline-flex;
  align-items: center;
  margin-top: 0.7rem;
  padding: 0.25rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 999px;
  background-color: #e5f4f7;
  color: #334155;
  border: 1px solid #e2e8f0;
}

/* Botones */

.promo-overlay-actions {
  margin-top: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .promo-overlay-actions {
    flex-direction: row;
    align-items: center;
  }
}

.promo-overlay-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background-color 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease,
    transform 0.1s ease;
}

.promo-overlay-btn--primary {
  flex: 1;
  background-color: #169cc0;
  color: #ffffff;
  border-color: #169cc0;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.3);
}

.promo-overlay-btn--primary:hover {
  background-color: #0e7490;
  border-color: #0e7490;
  transform: translateY(-1px);
}

.promo-overlay-btn--ghost {
  background-color: #ffffff;
  color: #475569;
  border-color: #e2e8f0;
}

.promo-overlay-btn--ghost:hover {
  background-color: #f8fafc;
}

/* Nota pequeña */

.promo-overlay-footnote {
  margin-top: 0.6rem;
  font-size: 0.7rem;
  color: #9ca3af;
}

/* ============================
   FICHA DE PRODUCTO
=============================== */

.product-main {
  padding-top: 2rem;
  padding-bottom: 2.5rem;
}

/* Migas de pan */

.product-breadcrumbs {
  font-size: 0.75rem;
  color: #64748b;
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.product-breadcrumb-link {
  color: #64748b;
  text-decoration: none;
}

.product-breadcrumb-link:hover {
  text-decoration: underline;
}

.product-breadcrumb-separator {
  color: #94a3b8;
}

.product-breadcrumb-current {
  color: #0f172a;
}

/* Layout principal */

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.75rem;
}

@media (min-width: 1024px) {
  .product-layout {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
  }
}

/* Columna izquierda: media */

.product-media {
  display: flex;
  flex-direction: column;
}

.product-media-card {
  background-color: #ffffff;
  border-radius: 1.25rem;
  border: 1px solid #e2e8f0;
  padding: 0.8rem;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}

@media (min-width: 640px) {
  .product-media-card {
    padding: 1rem;
  }
}

.product-media-main {
  width: 100%;
  border-radius: 0.9rem;
  background-color: #e5e7eb;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
}

.product-media-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-media-main-placeholder {
  font-size: 0.85rem;
  color: #94a3b8;
}

/* Thumbnails */

.product-thumbs {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.thumb-btn {
  width: 4.5rem;
  height: 4.5rem;
  flex-shrink: 0;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  background-color: #e5e7eb;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  outline: none;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.1s ease;
}

.thumb-btn:hover {
  transform: translateY(-1px);
}

.thumb-btn--active {
  border-color: #0ea5e9;
  box-shadow: 0 0 0 2px #bae6fd;
}

.thumb-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Columna derecha: info */

.product-info {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.product-info-card {
  background-color: #ffffff;
  border-radius: 1.25rem;
  border: 1px solid #e2e8f0;
  padding: 1rem 0.9rem 1.1rem;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}

@media (min-width: 640px) {
  .product-info-card {
    padding: 1.25rem 1.2rem 1.3rem;
  }
}

.product-category-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #94a3b8;
  margin-bottom: 0.25rem;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0c4a6e;
  margin: 0 0 0.5rem 0;
}

@media (min-width: 640px) {
  .product-title {
    font-size: 1.5rem;
  }
}

.product-price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: flex-end;
  margin-bottom: 0.75rem;
}

.product-price-block {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.product-price-main {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0c4a6e;
}

@media (min-width: 640px) {
  .product-price-main {
    font-size: 1.5rem;
  }
}

.product-price-unit {
  font-size: 0.85rem;
  font-weight: 600;
  color: #6b7280; /* gris suave */
  margin-left: 0.25rem;
}

.product-price-note {
  font-size: 0.7rem;
  color: #9ca3af;
}

.product-meta {
  font-size: 0.78rem;
  color: #475569;
}

.product-meta-label {
  font-weight: 600;
  margin-right: 0.2rem;
}

/* Descripción */

.product-description {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
}

.product-description-empty {
  font-size: 0.78rem;
  color: #cbd5e1;
}

/* Tags */

.product-tags {
  margin-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.product-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.25rem 0.9rem;
  font-size: 0.75rem;
  color: #334155;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
}

.product-tag--accent {
  background-color: #ecfeff;
  color: #0369a1;
  border-color: #bae6fd;
}

/* Botones */

.product-actions {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease,
    transform 0.1s ease;
}

.product-action-btn--primary {
  background-color: #0ea5e9;
  color: #ffffff;
  border: 1px solid #0ea5e9;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.25);
}

.product-action-btn--primary:hover {
  background-color: #0284c7;
  border-color: #0284c7;
  transform: translateY(-1px);
}

.product-action-btn--secondary {
  background-color: #ffffff;
  color: #334155;
  border: 1px solid #cbd5e1;
}

.product-action-btn--secondary:hover {
  background-color: #f8fafc;
}

/* Tarjeta de ayuda */

.product-help-card {
  margin-top: 0.75rem;
  background-color: #eff6ff;
  border-radius: 1.25rem;
  border: 1px solid #bfdbfe;
  padding: 0.9rem 0.9rem 1rem;
  font-size: 0.8rem;
  color: #1d4ed8;
}

.product-help-title {
  font-weight: 600;
  margin: 0 0 0.3rem 0;
}

.product-help-text {
  margin: 0;
  color: #1e40af;
}

/* Botón de acción: WhatsApp */
.product-action-btn--whatsapp {
  background-color: #22c55e;          /* verde tipo WhatsApp */
  color: #ffffff;
  border: 1px solid #22c55e;
  box-shadow: 0 4px 10px rgba(22, 197, 94, 0.35);
}

.product-action-btn--whatsapp:hover {
  background-color: #16a34a;
  border-color: #16a34a;
  transform: translateY(-1px);
}

.product-action-btn--whatsapp:active {
  background-color: #15803d;
  border-color: #15803d;
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(22, 197, 94, 0.4);
}

/* ============================
   PÁGINA "QUIÉNES SOMOS" (ABOUT)
=============================== */

.about-main {
  /* opcional: si quieres ajustar un poco distinto al site-main */
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}

.about-section {
  margin-bottom: 2.5rem;
}

/* Layout principal: texto empresa + columna lateral */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.1fr);
  }
}

/* Tarjetas reutilizando el estilo de tus cards existentes */
.about-card {
  background-color: #ffffff;
  border-radius: 1rem;
  border: 1px solid #e2e8f0; /* slate-200 */
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  padding: 1.25rem 1rem 1.4rem;
}

@media (min-width: 640px) {
  .about-card {
    padding: 1.5rem 1.25rem 1.6rem;
  }
}

/* Títulos y textos dentro de las tarjetas */
.about-card-title {
  margin: 0 0 0.6rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0c4a6e; /* sky-900 */
}

@media (min-width: 640px) {
  .about-card-title {
    font-size: 1.25rem;
  }
}

.about-card-subtitle {
  margin: 0 0 0.4rem 0;
  font-size: 0.95rem;
  color: #475569; /* slate-600 */
}

.about-card-text {
  margin: 0 0 0.7rem 0;
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
}

.about-card-list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
}

/* Columna lateral (fundador, misión-visión, contacto) */
.about-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Tarjeta fundador */
.about-founder {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.about-founder-photo {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 999px;
  border: 3px solid #0ea5e9; /* sky-500 */
  object-fit: cover;
  background-color: #e5e7eb;
}

.about-founder-name {
  margin: 0 0 0.2rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: #0c4a6e;
}

.about-founder-role {
  margin: 0 0 0.5rem 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #94a3b8; /* slate-400 */
}

.about-founder-bio {
  margin: 0;
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
}

/* Misión y visión en grid */
.about-mission-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.9rem;
}

@media (min-width: 640px) {
  .about-mission-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Tarjeta de contacto */
.about-contact-card p {
  margin: 0.15rem 0;
  font-size: 0.9rem;
  color: #475569;
}

.about-contact-card strong {
  font-weight: 600;
}

.about-contact-map-link {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0c4a6e;
  text-decoration: underline;
}

/* Títulos generales de secciones dentro de about */
.about-section-title {
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #0c4a6e;
}

@media (min-width: 640px) {
  .about-section-title {
    font-size: 1.5rem;
  }
}

.about-section-text {
  margin: 0 0 0.8rem 0;
  font-size: 0.9rem;
  color: #64748b;
}

/* ============================
   CARRUSEL "IMÁGENES DE LA EMPRESA"
=============================== */

.about-carousel {
  margin-top: 0.75rem;
}

.about-carousel-track {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 0.5rem 0 0.35rem;
  scroll-snap-type: x mandatory;
}

.about-carousel-item {
  flex: 0 0 auto;
  width: 16rem;           /* ~256px */
  max-width: 70vw;
  border-radius: 0.9rem;
  border: 1px solid #e2e8f0;
  background-color: #ffffff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  scroll-snap-align: start;
}

.about-carousel-image {
  display: block;
  width: 100%;
  height: 11rem;
  object-fit: cover;
  background-color: #e5e7eb;
}

.about-carousel-caption {
  margin: 0;
  padding: 0.4rem 0.7rem 0.6rem;
  font-size: 0.75rem;
  color: #94a3b8;
}


/* Puedes añadir aquí estilos para header, hero, categorías, etc.
   si más adelante sacas Tailwind también de esos archivos. */
