/* =========================================================================
   Utihotel — main.css
   Tokens de diseño (paleta naranja/oscuro + tipografías) según Figma.
   Figma: https://www.figma.com/design/rqCLzS18oAz3gixYaq5Fkq/Utihotel?node-id=165-263
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. Design tokens — variables centralizadas y reutilizables
   ------------------------------------------------------------------------- */
:root {
	/* Colores de marca */
	--color-primary: #f2811d;          /* Naranja principal (botones, acentos) */
	--color-primary-dark: #d96d10;     /* Naranja hover/active */
	--color-primary-soft: #fef0e2;     /* Naranja muy claro (fondos sutiles) */

	/* Neutros / oscuros */
	--color-dark: #1b1b1b;             /* Secciones oscuras y footer */
	--color-dark-alt: #2a2a2a;         /* Bloques oscuros secundarios */

	/* Texto */
	--color-text: #1f1f1f;
	--color-text-muted: #6e6e6e;
	--color-text-invert: #ffffff;

	/* Superficies */
	--color-bg: #ffffff;
	--color-bg-alt: #f4f4f5;           /* Secciones claras alternas */
	--color-border: #e6e6e6;

	/* Utilidad */
	--color-whatsapp: #25d366;

	/* Tipografía */
	--font-heading: "Roboto Condensed", "Inter", "Segoe UI", system-ui, sans-serif;
	--font-body: "Inter", "Segoe UI", system-ui, sans-serif;
	--font-condensed: "Roboto Condensed", "Arial Narrow", sans-serif;
	--font-roboto: "Roboto", "Segoe UI", system-ui, sans-serif;
	--font-size-base: 1rem;            /* 16px */
	--line-height-base: 1.6;
	--fw-regular: 400;
	--fw-medium: 500;
	--fw-semibold: 600;
	--fw-bold: 700;
	--fw-extrabold: 800;

	/* Espaciado (escala) */
	--space-xs: 0.5rem;
	--space-sm: 1rem;
	--space-md: 1.5rem;
	--space-lg: 2rem;
	--space-xl: 3rem;
	--space-2xl: 5rem;

	/* Layout */
	--container-max: 1200px;
	--container-pad: 1.25rem;
	--header-height: 76px;
	--radius-sm: 6px;
	--radius-md: 10px;
	--radius-lg: 16px;
	--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
	--shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
	--transition: 0.25s ease;
}

/* -------------------------------------------------------------------------
   2. Reset / base
   ------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
	/* Compensa el header sticky al saltar a una ancla (#seccion). */
	scroll-padding-top: calc(var(--header-height) + 12px);
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: var(--font-size-base);
	line-height: var(--line-height-base);
	color: var(--color-text);
	background-color: var(--color-bg);
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-primary-dark); }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	font-weight: var(--fw-bold);
	line-height: 1.2;
	color: var(--color-text);
	margin: 0 0 var(--space-sm);
}

p { margin: 0 0 var(--space-sm); }

/* -------------------------------------------------------------------------
   3. Layout helpers
   ------------------------------------------------------------------------- */
.container {
	width: 100%;
	max-width: var(--container-max);
	margin-inline: auto;
	padding-inline: var(--container-pad);
}
/* Contenedor a ancho completo alineado con el header (padding lateral 100px) */
.container--wide {
	max-width: none;
	padding-inline: 100px;
}

.section { padding-block: var(--space-2xl); }
.section--light { background-color: var(--color-bg-alt); }
.section--dark { background-color: var(--color-dark); color: var(--color-text-invert); }

.section__eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.8rem;
	font-weight: var(--fw-semibold);
	color: var(--color-primary);
	margin-bottom: var(--space-xs);
}
.section__eyebrow--light { color: var(--color-primary); }

.section__title {
	font-family: var(--font-condensed); /* Roboto Condensed */
	font-size: 42px;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
	color: #160e04;
	margin-bottom: var(--space-lg);
}
.section__title--light { color: var(--color-text-invert); }

.section__placeholder {
	border: 1px dashed var(--color-border);
	border-radius: var(--radius-md);
	padding: var(--space-xl);
	text-align: center;
	color: var(--color-text-muted);
	background-color: var(--color-bg);
}
.section__placeholder--light {
	background-color: var(--color-dark-alt);
	border-color: rgba(255, 255, 255, 0.18);
	color: rgba(255, 255, 255, 0.7);
}

/* -------------------------------------------------------------------------
   4. Botones
   ------------------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-xs);
	font-family: var(--font-heading);
	font-weight: var(--fw-semibold);
	font-size: 0.95rem;
	line-height: 1;
	padding: 0.85rem 1.6rem;
	border: 2px solid transparent;
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: background-color var(--transition), color var(--transition), border-color var(--transition);
}
.btn--primary {
	background-color: var(--color-primary);
	color: var(--color-text-invert);
}
.btn--primary:hover {
	background-color: var(--color-primary-dark);
	color: var(--color-text-invert);
}
.btn--outline {
	background-color: transparent;
	border-color: var(--color-primary);
	color: var(--color-primary);
}
.btn--outline:hover {
	background-color: var(--color-primary);
	color: var(--color-text-invert);
}

/* -------------------------------------------------------------------------
   5. Header
   ------------------------------------------------------------------------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background-color: var(--color-bg);
	border-bottom: 1px solid var(--color-border);
	transition: box-shadow var(--transition), background-color var(--transition);
}
/* Estado al hacer scroll: sombra sutil (lo añade main.js). */
.site-header.is-scrolled {
	box-shadow: var(--shadow-md);
	border-bottom-color: transparent;
}
/* Layout: logo (izq) | menú (centrado) | acciones (der) — full width, padding 20px 100px (Figma) */
.site-header__inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: var(--space-md);
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 20px 100px;
}
.site-header__brand { justify-self: start; }
/* Logo según Figma: 227 x ~69px */
.site-header__brand .custom-logo {
	width: 227px;
	height: auto;
	max-height: none;
}
.site-header__title { font-size: 1.6rem; }
.site-header__actions {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
	justify-self: end;
}
.site-header__title {
	font-family: var(--font-heading);
	font-weight: var(--fw-extrabold);
	font-size: 1.4rem;
	color: var(--color-text);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
/* Menú centrado en la franja del header */
.site-header__nav { display: flex; justify-content: center; align-items: center; }
/* CTA y cabecera del panel: solo en móvil */
.site-header__drawer-cta { display: none; }
.site-header__drawer-head { display: none; }
.site-header__toggle-icon { display: block; color: #111; }
.nav-menu {
	display: flex;
	align-items: center;
	gap: 60px; /* Figma: separación entre custom links */
	margin: 0;
	padding: 0;
	list-style: none;
}
/* Menú principal — specs Figma: Roboto Condensed 18px / 600 / #111 / uppercase */
.nav-menu a {
	font-family: var(--font-condensed);
	font-weight: 600;
	font-size: 18px;
	line-height: normal;
	text-transform: uppercase;
	color: #111;
}
.nav-menu a:hover { color: var(--color-primary); }

/* CTA del header — Figma: Roboto Condensed 18px/600, blanco, uppercase, padding 9.5px 20px */
.site-header__cta {
	padding: 9.5px 20px;
	font-family: var(--font-condensed);
	font-size: 18px;
	font-weight: 600;
	line-height: normal;
	letter-spacing: normal;
	text-transform: uppercase;
	color: #fff;
}

/* Toggle mobile (oculto en desktop) */
.site-header__toggle {
	display: none;
	position: relative;
	width: 44px;
	height: 44px;
	background: transparent;
	border: 0;
	cursor: pointer;
}
.site-header__toggle-bar,
.site-header__toggle-bar::before,
.site-header__toggle-bar::after {
	content: "";
	position: absolute;
	left: 10px;
	width: 24px;
	height: 2px;
	background-color: var(--color-text);
	transition: transform var(--transition), opacity var(--transition);
}
.site-header__toggle-bar { top: 21px; }
.site-header__toggle-bar::before { top: -7px; }
.site-header__toggle-bar::after { top: 7px; }

/* -------------------------------------------------------------------------
   6. Hero
   ------------------------------------------------------------------------- */
.hero {
	position: relative;
	min-height: 78vh;
	display: flex;
	align-items: center;
	color: var(--color-text-invert);
	background-color: #15110c;
	background-image: linear-gradient(120deg, #2a2118, #15110c); /* fallback si no hay imagen */
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
/* Overlay de legibilidad; su opacidad la controla el Customizer (inline). */
.hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.45));
	pointer-events: none;
}
.hero__inner {
	position: relative;
	width: 100%;
	padding: 0 100px; /* alineado con el padding lateral del header */
}
.hero__content { max-width: 760px; }
/* Título y subtítulo del hero — specs Figma: Inter, blanco */
.hero__title {
	color: #fff;
	font-family: var(--font-body); /* Inter */
	font-size: 54px;
	font-weight: 700;
	line-height: normal;
	margin-bottom: 22px;
	max-width: 670px;        /* fuerza el título a dos líneas (Figma) */
	overflow-wrap: break-word;
}
.hero__subtitle {
	color: #fff;
	font-family: var(--font-body);
	font-size: 18px;
	font-weight: 400;
	line-height: normal;
	margin-bottom: 0;
}

/* Swiper — reglas críticas mínimas para que el layout no salte mientras
   el CSS completo de Swiper carga de forma asíncrona (no bloquea el render). */
.swiper { position: relative; overflow: hidden; margin: 0; padding: 0; list-style: none; z-index: 1; }
.swiper-wrapper { display: flex; box-sizing: content-box; height: 100%; position: relative; }
.swiper-slide { flex-shrink: 0; width: 100%; height: 100%; position: relative; }

/* ── Hero como carrusel (Swiper) ── */
.hero.hero-slider {
	display: block;
	--hero-h: 85vh;            /* alto del banner */
	height: var(--hero-h);
	min-height: var(--hero-h); /* anula el min-height: 78vh de .hero (evita franja oscura) */
}
.hero-swiper {
	height: var(--hero-h);
	--swiper-theme-color: #ffffff;
	--swiper-navigation-size: 26px;
	--swiper-pagination-color: var(--color-primary);
	--swiper-pagination-bullet-inactive-color: #ffffff;
	--swiper-pagination-bullet-inactive-opacity: 0.55;
}
.hero-swiper .swiper-wrapper { height: var(--hero-h); }
.hero-slide {
	position: relative;
	height: var(--hero-h);     /* altura fija, no depende del contenido */
	display: flex;
	align-items: flex-start;
	color: var(--color-text-invert);
	background-color: #15110c;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
/* Contenido anclado abajo: deja exactamente 99px hasta el pagination (66 + 5 + 99 = 170) */
.hero-slide .hero__inner { padding-top: 289px; } /* Figma: top del contenido */
/* La imagen del slide siempre cubre el alto completo del banner */
.hero-slide__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 0;
}
.hero-slide .hero__overlay { z-index: 1; }
.hero-slide .hero__inner { z-index: 2; }
.hero__text {
	color: #fff;
	font-family: var(--font-body);
	font-size: 18px;
	font-weight: 400;
	line-height: normal;
}
.hero__text p { margin: 0 0 var(--space-xs); }
.hero__text p:last-child { margin-bottom: 0; }
/* Imágenes dentro del contenido del slide (ej. logo): tamaño acotado */
.hero__text img {
	max-width: 260px;
	height: auto;
	margin: 0 0 var(--space-sm);
}

/* Paginación: barras de 50px alineadas a la izquierda con el texto.
   Inactiva = solo borde 1px; activa = naranja sólido. */
.hero-swiper .swiper-pagination {
	text-align: left;
	left: 100px !important;   /* alineada con el contenido (gana al CSS de Swiper) */
	right: auto !important;
	width: auto !important;
	bottom: 66px !important;  /* Figma */
}
.hero-swiper .swiper-pagination-bullet {
	width: 50px;
	height: 5px;
	border-radius: 40px;
	box-sizing: border-box;
	background: transparent;
	border: 1px solid var(--color-primary);
	opacity: 1;
	margin: 0 5px 0 0 !important;
	transition: background var(--transition);
}
.hero-swiper .swiper-pagination-bullet-active { background: var(--color-primary); }
.hero-swiper--single .swiper-pagination { display: none; }

/* -------------------------------------------------------------------------
   6b. Backdrop del menú móvil
   ------------------------------------------------------------------------- */
.menu-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	z-index: 205;
}
.menu-backdrop.is-visible { opacity: 1; visibility: visible; }
body.is-menu-open { overflow: hidden; }

/* -------------------------------------------------------------------------
   7. Footer
   ------------------------------------------------------------------------- */
.site-footer { background-color: #140b02; color: #fff; }
.site-footer__inner { display: flex; flex-direction: column; gap: 32px; padding-block: 70px 40px; }
.site-footer__top { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.site-footer__logo { width: 149.75px; height: 57.605px; object-fit: contain; display: block; }
.site-footer .custom-logo { width: 149.75px; height: 57.605px; object-fit: contain; }
.site-footer__title {
	font-family: var(--font-condensed);
	font-weight: 700;
	font-size: 1.6rem;
	text-transform: uppercase;
	color: #fff;
}
.footer-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.footer-menu a { color: #fff; font-family: var(--font-body); font-size: 14px; }
.footer-menu a:hover { color: var(--color-primary); }
.site-footer__social { display: flex; gap: 12px; }
.site-footer__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.4);
	color: #fff;
	transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.site-footer__social-link svg { width: 13px; height: 13px; }
.site-footer__social-link:hover { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }
.site-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	border-top: 1px solid #fff;
	padding-top: 30px;
}
.site-footer__copy { margin: 0; font-size: 14px; color: #fff; }
.site-footer__by { display: inline-flex; align-items: center; }
.site-footer__by img { height: 24px; width: auto; display: block; }

/* -------------------------------------------------------------------------
   8. Accesibilidad
   ------------------------------------------------------------------------- */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	position: absolute !important;
	word-wrap: normal !important;
}
.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 1000;
	padding: 0.75rem 1.25rem;
	background: var(--color-primary);
	color: #fff;
	border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus {
	left: 0;
	color: #fff;
}

/* -------------------------------------------------------------------------
   9. Botón flotante de WhatsApp
   ------------------------------------------------------------------------- */
/* Logo del cliente dentro de un círculo blanco con sombra suave (como el diseño). */
.whatsapp-float {
	position: fixed;
	right: 100px;
	bottom: 90px;
	z-index: 200;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	background: #ffffff;
	border-radius: 50%;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
	/* Alineado con el botón Contacto: mismo margen derecho que el padding lateral del header (100px) */
	transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
	transform: translateY(-2px) scale(1.05);
	box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}
.whatsapp-float:focus-visible {
	outline: 3px solid rgba(37, 211, 102, 0.5);
	outline-offset: 3px;
}
.whatsapp-float__icon { display: block; width: 60%; height: 60%; }

@media (max-width: 480px) {
	.whatsapp-float { right: 20px; bottom: 80px; width: 56px; height: 56px; }
}

/* -------------------------------------------------------------------------
   10. Productos: filtro (tabs), grid, card y modal
   ------------------------------------------------------------------------- */
/* Catálogo: padding 100px arriba/abajo (Figma) + cabecera y filtros centrados */
#catalogo { padding-block: 100px; }
#catalogo .section__eyebrow,
#catalogo .section__title { text-align: center; }

/* Equipos calientes / Equipos en oferta: fondo gris claro, título centrado */
#equipos-calientes,
#ofertas { padding-block: 100px; background: #f6f6f8; }
#equipos-calientes .section__title,
#ofertas .section__title { text-align: center; }

/* Carousel de equipos calientes: a todo el ancho (alineado con el header) */
.product-carousel-wrap { position: relative; }
.product-carousel { overflow: hidden; }
.product-carousel .swiper-slide { height: auto; display: flex; }
.product-carousel .swiper-slide .product-card { width: 100%; }

/* Flechas de navegación afuera del carousel (en la zona del padding) */
.product-carousel__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 26px;
	height: 26px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0;
	background: transparent;
	cursor: pointer;
	transition: transform var(--transition), opacity var(--transition);
}
.product-carousel__nav svg { width: 26px; height: 26px; display: block; }
.product-carousel__nav:hover { transform: translateY(-50%) scale(1.12); }
.product-carousel__prev { left: -50px; }
.product-carousel__next { right: -50px; }
.product-carousel__nav.swiper-button-disabled { opacity: 0.4; pointer-events: none; }

/* -------------------------------------------------------------------------
   Banner Browne Foodservice (Figma 175:1086)
   ------------------------------------------------------------------------- */
#browne.browne { background: #160e04; padding-block: 100px; }
.browne__inner { display: flex; gap: 40px; align-items: center; }
.browne__content { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; gap: 40px; align-items: flex-start; }
.browne__head { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.browne__eyebrow {
	margin: 0;
	font-family: "Roboto", var(--font-body);
	font-size: 12px;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: #9b9b9b;
}
.browne__title {
	margin: 0;
	font-family: var(--font-condensed); /* Roboto Condensed */
	font-size: 42px;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
	color: #fff;
}
.browne__title-accent { color: #f7931e; display: block; }
.browne__text {
	font-family: var(--font-body); /* Inter */
	font-weight: 300;
	font-size: 17px;
	line-height: normal;
	letter-spacing: 0.72px;
	color: #fff;
}
.browne__text p { margin: 0; }
.browne__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	padding: 0 20px;
	border-radius: 5px;
	background: #f7931e;
	color: #fff;
	font-family: var(--font-condensed); /* Roboto Condensed */
	font-size: 18px;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
}
.browne__btn:hover { background: var(--color-primary-dark); color: #fff; }
.browne__media {
	position: relative;
	flex: 0 0 auto;
	width: min(680px, 48%);
	height: 530px;
	border-radius: 10px;
	overflow: hidden;
}
.browne__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.browne__logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	width: 70%;
	max-width: 472px;
	height: auto;
}

/* -------------------------------------------------------------------------
   Nuestros representantes (Figma 165:331)
   ------------------------------------------------------------------------- */
.representantes { background: #fff; padding-block: 70px 100px; }
.representantes > .container { display: flex; flex-direction: column; align-items: center; gap: 60px; }
.representantes__head { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.representantes__eyebrow {
	margin: 0;
	font-family: var(--font-body); /* Inter */
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: #f0880d;
}
.representantes__title {
	margin: 0;
	font-family: var(--font-condensed); /* Roboto Condensed */
	font-size: 42px;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
	color: #111;
	text-align: center;
}
.logos-carousel { width: 100%; overflow: hidden; }
.logos-carousel .swiper-wrapper {
	align-items: center;
	transition-timing-function: linear; /* marquee continuo */
}
.logos-carousel .swiper-slide {
	width: auto;
	display: flex;
	align-items: center;
}
.representantes__logo {
	height: 58px;
	width: auto;
	max-width: 100%;
	object-fit: contain;
	/* Multiply: el fondo blanco del logo se funde con la sección y deja el arte oscuro visible */
	mix-blend-mode: multiply;
}

/* -------------------------------------------------------------------------
   Banner Transporte (Figma 165:353)
   ------------------------------------------------------------------------- */
.transporte { background: #fff; padding-block: 100px; }
.transporte__card {
	display: flex;
	align-items: stretch;
	min-height: 418px;
	border-radius: 10px;
	overflow: hidden;
}
.transporte__media { flex: 1.25 1 0; min-width: 0; }
.transporte__img { width: 100%; height: 100%; min-height: 418px; object-fit: cover; display: block; }
.transporte__content {
	flex: 1 1 0;
	min-width: 0;
	background: #111;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 35px;
	padding: 40px 40px 40px 121px;
}
.transporte__title {
	margin: 0;
	font-family: var(--font-condensed); /* Roboto Condensed */
	font-weight: 500;
	font-size: 24px;
	line-height: 1.15;
	letter-spacing: 0.48px;
	text-transform: uppercase;
	color: #fff;
}
.transporte__text {
	margin: 0;
	max-width: 440px;
	font-family: var(--font-roboto); /* Roboto */
	font-weight: 300;
	font-size: 18px;
	line-height: 1.34;
	letter-spacing: 0.72px;
	color: #fff;
}
.transporte__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	padding: 0 20px;
	border: 1px solid #fff;
	border-radius: 10px;
	background: #fff;
	color: #f0880d;
	font-family: var(--font-condensed); /* Roboto Condensed */
	font-size: 18px;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
}
.transporte__btn:hover { background: transparent; color: #fff; }

/* -------------------------------------------------------------------------
   Contacto (Figma 165:367)
   ------------------------------------------------------------------------- */
.contacto { background: #fff; padding-block: 0 90px; }
.contacto__head { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; margin-bottom: 43px; }
.contacto__eyebrow {
	margin: 0;
	font-family: var(--font-body); /* Inter */
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: #f0880d;
}
.contacto__title {
	margin: 0;
	font-family: var(--font-condensed); /* Roboto Condensed */
	font-size: 42px;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
	color: #111;
}
.contacto__grid { display: flex; gap: 40px; align-items: stretch; }
.contacto__info { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; gap: 29px; }
.contacto__cards { display: flex; gap: 29px; }
.contacto__card {
	flex: 1 1 0;
	min-width: 0;
	background: #f6f6f8;
	border: 1px solid #e4e5eb;
	border-radius: 10px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.contacto__card--full { width: 100%; }
.contacto__card-label {
	margin: 0;
	font-family: var(--font-condensed); /* Roboto Condensed */
	font-weight: 500;
	font-size: 24px;
	line-height: normal;
	color: #111;
}
.contacto__card-value {
	margin: 0;
	font-family: var(--font-roboto); /* Roboto */
	font-weight: 400;
	font-size: 18px;
	line-height: 1.35;
	color: #111;
}
.contacto__card-value a { color: inherit; text-decoration: none; }
.contacto__card-value a:hover { color: var(--color-primary); }
.contacto__map { position: relative; flex: 1 1 auto; min-height: 280px; border-radius: 10px; overflow: hidden; background: #e8eaed; z-index: 0; }
.contacto__map iframe { display: block; width: 100%; height: 100%; min-height: 280px; }
/* Leaflet: la fuente/estilos base no deben heredar del tema */
.contacto__map.leaflet-container { font: 12px/1.5 var(--font-body); }
.contacto__map .leaflet-control a { color: #111; }
.contacto__map-pin {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -100%);
	width: 46px;
	height: auto;
	pointer-events: none;
	z-index: 2;
	filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
}

.contacto__form-card {
	flex: 1 1 0;
	min-width: 0;
	background: #f6f6f8;
	border: 1px solid #e4e5eb;
	border-radius: 10px;
	padding: 40px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.contacto__form { display: flex; flex-direction: column; gap: 20px; margin-top: 20px; }
.contacto__input {
	width: 100%;
	background: #f6f6f8;
	border: 1px solid #111;
	border-radius: 10px;
	padding: 12px 17px;
	font-family: var(--font-roboto); /* Roboto */
	font-size: 18px;
	color: #111;
}
.contacto__input::placeholder { color: #111; opacity: 1; }
.contacto__input:focus { outline: 2px solid var(--color-primary); outline-offset: 1px; }
.contacto__textarea { min-height: 200px; resize: vertical; }
.contacto__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contacto__status { font-family: var(--font-body); font-size: 15px; min-height: 1em; }
.contacto__status.is-error { color: #b32d2e; }
.contacto__status.is-success { color: #1a7f37; }
.contacto__submit {
	align-self: flex-start;
	height: 40px;
	padding: 0 20px;
	border: 0;
	border-radius: 10px;
	background: #f0880d;
	color: #fff;
	font-family: var(--font-condensed); /* Roboto Condensed */
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	cursor: pointer;
	transition: background var(--transition);
}
.contacto__submit:hover { background: var(--color-primary-dark); }
.contacto__submit.is-loading { opacity: 0.6; pointer-events: none; }

.catalogo__cta { text-align: center; margin-top: var(--space-xl); }
.catalogo__cta-text {
	color: #111;
	font-family: var(--font-condensed); /* Roboto Condensed */
	font-size: 24px;
	font-weight: 400;
	line-height: normal;
	margin: 0 0 var(--space-md);
}
.catalogo__cta-text strong,
.catalogo__cta-text b { font-weight: 700; }
.catalogo__cta-text p { margin: 0; }
.catalogo__cta .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	height: 40px;
	padding: 0 20px;
	border: 0;
	border-radius: 10px;
	background: #f0880d;
	color: #fff;
	font-family: var(--font-condensed);
	font-size: 18px;
	font-weight: 700;
	line-height: normal;
	text-transform: uppercase;
}
.catalogo__cta .btn:hover { background: var(--color-primary-dark); color: #fff; }

.product-filter-wrap {
	position: relative;
	max-width: 992px;
	margin: 0 auto var(--space-xl);
}
/* Degradado al final indicando que hay más categorías (Figma) */
.product-filter-wrap::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 90px;
	background: linear-gradient(90deg, rgba(217, 217, 217, 0) 0%, #fff 100%);
	pointer-events: none;
}
.product-filter {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	gap: 10px;
	padding-right: 51px;             /* espacio después de la última categoría */
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;            /* oculta la scrollbar */
}
.product-filter::-webkit-scrollbar { display: none; }
.product-filter__tab {
	flex: 0 0 auto;
	white-space: nowrap;
	font-family: var(--font-condensed);
	font-weight: 600;
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: #160e04;
	background: var(--color-bg);
	border: 1.5px solid #160e04;
	border-radius: 10px;
	padding: 0.6rem 1.25rem;
	cursor: pointer;
	transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.product-filter__tab:hover { border-color: var(--color-primary); color: var(--color-primary); }
.product-filter__tab.is-active {
	background: var(--color-primary);
	border-color: var(--color-primary);
	color: #fff;
}

.productos-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr); /* 3 columnas (3x3) */
	gap: 40px 40px;
	transition: opacity var(--transition);
}
.productos-grid.is-loading { opacity: 0.45; pointer-events: none; }
.productos__empty { grid-column: 1 / -1; color: var(--color-text-muted); text-align: center; padding: var(--space-xl); }

.product-card {
	display: flex;
	flex-direction: column;
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	overflow: hidden;
	transition: box-shadow var(--transition), transform var(--transition);
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.product-card__media { position: relative; aspect-ratio: 4 / 3; background: var(--color-bg-alt); }
.product-card__img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Badge "NUEVO" y categorías: mismo estilo (Figma) */
.product-card__tag,
.product-card__estado,
.product-card__cat {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 4px 10px;
	border-radius: 5px;
	border: 1px solid #f0880d;
	background: rgba(247, 147, 30, 0.7);
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
	font-family: var(--font-body); /* Inter */
	font-size: 12px;
	font-weight: 400;
	line-height: normal;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	color: #fff;
}
.product-card__tag { position: absolute; top: 14px; right: 14px; }
.product-card__estado { position: absolute; top: 14px; right: 14px; }
.product-card__cats { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: var(--space-sm); }
.product-card__body { display: flex; flex-direction: column; gap: var(--space-xs); padding: var(--space-md); flex: 1; }
.product-card__title {
	color: #111;
	font-family: var(--font-condensed); /* Roboto Condensed */
	font-size: 24px;
	font-weight: 700;
	line-height: normal;
	margin: 0;
}
.product-card__desc {
	color: #111;
	font-family: var(--font-body); /* Inter */
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	margin: 0;
	flex: 1;
}
.product-card__actions { display: flex; gap: var(--space-sm); margin-top: var(--space-sm); }
.product-card__actions .btn {
	flex: 1;
	padding: 5.5px;
	font-family: var(--font-condensed); /* Roboto Condensed */
	font-size: 18px;
	font-weight: 700;
	line-height: normal;
	border-radius: 10px;
}
.product-card__actions .product-card__cotizar { background: #f0880d; border-color: #f0880d; color: #fff; }
.product-card__actions .product-card__info { background: transparent; border: 1px solid #111; color: #111; }

/* Modal */
.product-modal { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; padding: var(--space-md); }
.product-modal[hidden] { display: none; }
.product-modal__overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.6); }
.product-modal__dialog {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 720px;          /* Figma 960 reducido para no verse tan grande */
	max-height: 90vh;
	overflow: hidden;          /* el scroll va en __content; la X queda fija */
	background: #fff;
	border-radius: 10px;
	box-shadow: var(--shadow-md);
}
.product-modal__close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 36px;
	height: 36px;
	border: 0;
	background: transparent;
	font-size: 1.7rem;
	line-height: 1;
	color: #111;
	cursor: pointer;
	z-index: 3;
}
.product-modal__close:hover { color: var(--color-primary); }

/* El contenido hace scroll (la X queda fija en el dialog) */
.product-modal__content { max-height: 90vh; overflow-y: auto; }
/* Scroll funcional pero sin barra visible */
.product-modal__content,
.product-modal__thumbs { scrollbar-width: none; -ms-overflow-style: none; }
.product-modal__content::-webkit-scrollbar,
.product-modal__thumbs::-webkit-scrollbar { width: 0; height: 0; display: none; }

/* Galería pegada a los bordes del popup (sin padding); imagen 800x500, thumbs 149x170 */
.product-modal__top { display: grid; grid-template-columns: 110px 1fr; gap: 10px; height: 360px; }
.product-modal__thumbs { display: flex; flex-direction: column; gap: 10px; height: 100%; overflow-y: auto; }
.product-modal__thumb { flex: 0 0 110px; height: 110px; padding: 0; border: 0; background: #f8f8f8; cursor: pointer; opacity: 0.5; overflow: hidden; transition: opacity var(--transition); }
.product-modal__thumb.is-active { opacity: 1; }
.product-modal__thumb img { width: 100%; height: 100%; object-fit: contain; }
.product-modal__main { background: #f8f8f8; height: 100%; overflow: hidden; }
.product-modal__main img { width: 100%; height: 100%; object-fit: contain; }

/* Tabs + contenido (con padding 30px 50px 50px) */
.product-modal__body { display: flex; flex-direction: column; gap: 16px; padding: 22px 28px 28px; }
.product-modal__tabs { display: flex; gap: 10px; }
.product-modal__tab {
	flex: 1;
	padding: 9px 10px;
	border: 0;
	border-radius: 5px;
	background: #fafafa;
	font-family: var(--font-condensed);
	font-size: 20px;
	font-weight: 600;
	color: #3d3d33;
	cursor: pointer;
	transition: background var(--transition), color var(--transition);
}
.product-modal__tab.is-active { background: #f7931e; color: #fff; }
.product-modal__panels { border-top: 1px solid rgba(247, 147, 30, 0.5); padding-top: 16px; }
.product-modal__panel { display: none; color: #3d3d33; font-family: var(--font-body); font-size: 15px; text-align: justify; line-height: 1.55; }
.product-modal__panel.is-active { display: block; }
.product-modal__panel[data-panel="info"] { color: #3d3d33; font-family: var(--font-body); font-size: 16px; font-weight: 400; line-height: normal; text-align: justify; }
.product-modal__panel p { margin: 0 0 1em; }
.product-modal__panel p:last-child { margin-bottom: 0; }
.product-modal__panel ul { margin: 0; padding-left: 1.2em; }
/* Detalles en 2 columnas: párrafo 1 a la izquierda, párrafo 2 a la derecha */
.product-modal__panel[data-panel="detalles"] { column-count: 2; column-gap: 40px; }
.product-modal__panel[data-panel="detalles"] ul,
.product-modal__panel[data-panel="detalles"] p { width: fit-content; max-width: 100%; margin-left: auto; margin-right: auto; }
.product-modal__panel[data-panel="detalles"] p,
.product-modal__panel[data-panel="detalles"] li { break-inside: avoid; }
.product-modal__panel[data-panel="detalles"] p:last-child { margin-bottom: 0; }

/* -------------------------------------------------------------------------
   11. Quiénes somos
   ------------------------------------------------------------------------- */
#quienes-somos { padding-block: 100px; }
#quienes-somos > .container { max-width: 1600px; } /* mantiene proporciones del diseño en pantallas anchas */
.quienes__top { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.quienes__intro .section__eyebrow { font-family: var(--font-roboto); font-weight: 700; font-size: 12px; letter-spacing: 1.2px; color: #f0880d; margin-bottom: 6px; }
.quienes__intro .section__title { color: #111; margin-bottom: 16px; }
.quienes__text { color: #111; font-size: 17px; letter-spacing: 0.72px; line-height: 1.4; }
.quienes__text p { margin: 0 0 1em; }
.quienes__text p:last-child { margin-bottom: 0; }
.quienes__media { position: relative; height: 530px; border-radius: 10px; overflow: hidden; }
.quienes__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.quienes__quote {
	max-width: 720px;
	margin: 70px auto 0;
	text-align: center;
	font-family: var(--font-condensed);
	font-size: 34px;
	font-weight: 500;
	font-style: italic;
	line-height: 1.3;
	color: #111;
	border: 0;
	padding: 0;
}
.quienes__quote-accent { color: #f7931e; }
.quienes__quote::before { content: "\201C"; color: #f7931e; margin-right: 2px; }
.quienes__quote::after { content: "\201D"; color: #f7931e; margin-left: 2px; }
.quienes__valores { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 70px; }
.quienes__valor { background: #f6f6f8; border: 2px solid #e4e5eb; border-radius: 10px; padding: 40px; }
.quienes__valor-title { font-family: var(--font-condensed); text-transform: uppercase; font-size: 22px; font-weight: 700; color: #111; margin: 0 0 10px; }
.quienes__valor-text { font-family: var(--font-roboto); font-weight: 300; font-size: 17px; letter-spacing: 0.72px; line-height: 1.5; color: #111; margin: 0; }

/* -------------------------------------------------------------------------
   12. Listado por defecto (index.php)
   ------------------------------------------------------------------------- */
.site-main--default { padding-block: var(--space-2xl); }
.entry { margin-bottom: var(--space-xl); }
.entry__title a { color: var(--color-text); }
.entry__title a:hover { color: var(--color-primary); }
