/* === Iguana Publicidad · Compact spacing v2 === */
:root {
	--bg: #0b0b0f;
	--bg2: #0e1219;
	--card: #10131a;
	--muted: #b5c1c9;
	--hi: #a7ff1b;
	--hi2: #22d3ee;
	--hi3: #f0abfc;
	--hi4: #f59e0b;
	--radius: 18px;
	--shadow: 0 18px 44px rgba(0, 0, 0, .32);
	--space-1: 6px;
	--space-2: 10px;
	--space-3: 14px;
	--space-4: 18px;
	--space-5: clamp(24px, 3.2vw, 32px);
	/* --space-section: clamp(42px, 6.5vw, 56px); */
	/* espacio principal en la se session de navbar y contenido que estaba muy alto espacio marginado */
	--space-section: clamp(30px, 4.5vw, 8px);
}

* {
	box-sizing: border-box
}

html,
body {
	height: 100%
}

body {
	margin: 0;
	font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu;
	color: #fff;
	/* background:
		radial-gradient(1200px 600px at 110% -10%, #5b21b655, transparent 60%),
		radial-gradient(1000px 500px at -10% 120%, #0ea5e955, transparent 60%),
		var(--bg); */

	/* background: var(--bg); */
	background: var(--bg);
	/* background: #0e1219; */


	line-height: 1.55
}

a {
	color: inherit;
	text-decoration: none
}

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

.container {
	width: min(1100px, 92%);
	margin-inline: auto
}

header.glass {
	position: sticky;
	top: 0;
	z-index: 50;
	backdrop-filter: saturate(140%) blur(10px);
	background: linear-gradient(180deg, rgba(11, 11, 15, .90), rgba(11, 11, 15, .6));
	border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: var(--space-3) 0
}

.brand {
	display: flex;
	align-items: center;
	gap: var(--space-3)
}

.logo {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	/* background: conic-gradient(from 220deg, #a7ff1b, #22d3ee, #f0abfc, #f59e0b, #a7ff1b); */
	/* Código del nuevo fondo: imagen y degradado */
	background: url('./assets/img/favicon.png') center / 50% no-repeat;
		/* conic-gradient(from 220deg, #a7ff1b, #22d3ee, #f0abfc, #f59e0b, #a7ff1b); */
	box-shadow: 0 0 0 3px rgba(167, 255, 27, .2);
}

.brand-text {
	display: flex;
	flex-direction: column
}

.brand-title {
	font-size: 1.12rem;
	font-weight: 800;
	letter-spacing: .4px
}

.tag {
	font-size: .78rem;
	color: var(--muted);
	margin-top: -2px
}

#menu {
	display: block
}

.main-menu {
	display: flex;
	gap: var(--space-5);
	list-style: none;
	padding: 0;
	margin: 0
}

.main-menu a {
	padding: 8px 10px;
	border-radius: 10px;
	color: #e8f2f2
}

.main-menu a:hover,
.main-menu a.active {
	background: rgba(255, 255, 255, .08)
}

.burger {
	display: none;
	background: transparent;
	border: 0;
	gap: 5px;
	padding: 8px
}

.burger span {
	display: block;
	width: 22px;
	height: 2px;
	background: #e8f2f2;
	border-radius: 2px
}

@media (max-width: 860px) {
	.burger {
		display: inline-flex
	}

	#menu {
		position: fixed;
		inset: 64px 12px auto 12px;
		background: #0b0f14;
		border: 1px solid rgba(255, 255, 255, .08);
		border-radius: 16px;
		box-shadow: var(--shadow);
		display: none
	}

	#menu.open {
		display: block
	}

	.main-menu {
		flex-direction: column;
		padding: var(--space-3)
	}

	.main-menu a {
		padding: 12px 14px
	}
}

.hero {
	position: relative;
	overflow: hidden;
	isolation: isolate
}

.hero-bg {
	position: absolute;
	inset: -10px;
	background: radial-gradient(1100px 520px at 10% 10%, rgba(167, 255, 27, .18), transparent 60%),
		radial-gradient(900px 420px at 90% 50%, rgba(240, 171, 252, .18), transparent 60%);
		/*url('/assets/img/hero-banner.jpg') center right / cover no-repeat;*/
	transform: translateZ(0);
	will-change: background-position;
	z-index: -1;
	filter: saturate(112%)
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: var(--space-5);
	align-items: center;
	padding: var(--space-section) 0 calc(var(--space-section) - 12px)
}

.badge {
	display: inline-flex;
	gap: var(--space-2);
	align-items: center;
	background: rgba(167, 255, 27, .12);
	color: #d1ffd0;
	border: 1px solid rgba(167, 255, 27, .35);
	padding: var(--space-2) var(--space-3);
	border-radius: 999px;
	font-size: .88rem
}

.title {
	font-size: clamp(1.9rem, 5.5vw, 3.1rem);
	line-height: 1.05;
	margin: var(--space-2) 0 var(--space-2);
	font-weight: 800
}

.grad {
	background: linear-gradient(90deg, var(--hi), var(--hi2), var(--hi3), var(--hi4));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent
}

.slogan {
	color: #d6f7d1;
	font-size: 1.05rem;
	margin: 0 0 var(--space-3)
}

.cta {
	display: flex;
	gap: var(--space-3);
	margin-top: var(--space-4);
	flex-wrap: wrap
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, .08);
	background: linear-gradient(180deg, #141820, #0d1117);
	color: #fff;
	box-shadow: var(--shadow);
	transition: .2s;
	transform: translateZ(0)
}

.btn:hover {
	transform: translateY(-2px) scale(1.01)
}

.btn.primary {
	background: linear-gradient(180deg, #a7ff1b, #88e21a);
	color: #00100a;
	border-color: #9bf51b
}

.btn.ghost {
	background: transparent;
	border-color: rgba(255, 255, 255, .18)
}

.trust {
	display: flex;
	gap: var(--space-3);
	padding: 0;
	margin: var(--space-3) 0 0;
	list-style: none;
	color: #e2ffe0;
	flex-wrap: wrap
}

.hero-visual {
	position: relative;
	display: grid;
	place-items: center
}

.glow {
	position: absolute;
	inset: auto;
	width: 110%;
	height: 110%;
	background: radial-gradient(closest-side, rgba(167, 255, 27, .22), transparent 60%);
	z-index: -1;
	filter: blur(18px)
}

.scroll-indicator {
	position: absolute;
	left: 50%;
	bottom: 10px;
	transform: translateX(-50%);
	opacity: .75;
	font-size: 26px;
	animation: bounce 1.8s infinite
}

@keyframes bounce {

	0%,
	100% {
		transform: translate(-50%, 0)
	}

	50% {
		transform: translate(-50%, 6px)
	}
}

@media (max-width: 980px) {
	.hero-grid {
		grid-template-columns: 1fr;
		padding: calc(var(--space-section) - 8px) 0 calc(var(--space-section) - 14px)
	}
}

section {
	padding: var(--space-section) 0
}

.section-title {
	font-size: 1.8rem;
	margin: 0 0 var(--space-2);
	font-weight: 800
}

.section-sub {
	color: #cfe1d0;
	margin: 0 0 var(--space-4)
}

.grid {
	display: grid;
	gap: var(--space-3)
}

.grid.cols-3 {
	grid-template-columns: repeat(3, 1fr)
}

.grid.cols-4 {
	grid-template-columns: repeat(4, 1fr)
}

@media (max-width: 980px) {

	.grid.cols-3,
	.grid.cols-4 {
		grid-template-columns: repeat(2, 1fr)
	}
}

@media (max-width: 640px) {

	.grid.cols-3,
	.grid.cols-4 {
		grid-template-columns: 1fr
	}
}

.card {
	background: linear-gradient(180deg, #10131a, #0d1117);
	border: 1px solid rgba(255, 255, 255, .06);
	padding: var(--space-4);
	border-radius: var(--radius);
	box-shadow: var(--shadow)
}

.svc {
	display: flex;
	gap: var(--space-3);
	align-items: flex-start
}

.svc i {
	flex: 0 0 40px;
	height: 40px;
	border-radius: 12px;
	display: grid;
	place-items: center;
	background: conic-gradient(from 220deg, #a7ff1b33, #22d3ee33, #f0abfc33, #f59e0b33, #a7ff1b33);
	border: 1px solid rgba(255, 255, 255, .08)
}

.svc h3 {
	margin: 2px 0 var(--space-1);
	font-size: 1.02rem
}

.svc p {
	margin: 0;
	color: #cdd7de
}

.badgecard {
	background: linear-gradient(180deg, #0f131b, #0b0f14);
	border: 1px solid rgba(255, 255, 255, .06);
	padding: var(--space-4);
	border-radius: 16px;
	box-shadow: var(--shadow);
	text-align: center
}

.badgecard span {
	font-size: 24px;
	display: inline-grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	margin-bottom: var(--space-2);
	background: radial-gradient(circle at 30% 30%, rgba(167, 255, 27, .25), transparent 60%);
	border: 1px solid rgba(255, 255, 255, .12)
}

.gallery {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: var(--space-2)
}

.g-item {
	grid-column: span 4;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .08);
	position: relative;
	cursor: zoom-in
}

.g-item:hover {
	transform: translateY(-2px);
	transition: .2s
}

.g-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 4/3
}

@media (max-width: 980px) {
	.g-item {
		grid-column: span 6
	}
}

@media (max-width: 640px) {
	.g-item {
		grid-column: span 12
	}
}

.lightbox {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .8);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 70;
	padding: var(--space-4)
}

.lightbox.open {
	display: flex
}

.lightbox-img {
	max-width: min(1100px, 92vw);
	max-height: 80vh;
	border-radius: 12px;
	box-shadow: var(--shadow);
	border: 1px solid rgba(255, 255, 255, .18)
}

.lightbox-close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, .2);
	background: #0b0f14;
	color: #fff;
	font-size: 22px
}

.contact {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: var(--space-4)
}

@media (max-width: 980px) {
	.contact {
		grid-template-columns: 1fr
	}
}

.info-list {
	display: grid;
	gap: var(--space-3)
}

.info {
	display: flex;
	gap: var(--space-3);
	align-items: flex-start;
	background: linear-gradient(180deg, #0e1219, #0a0e14);
	border: 1px solid rgba(255, 255, 255, .06);
	padding: var(--space-3);
	border-radius: 12px
}

.info i {
	width: 32px;
	height: 32px;
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 10px;
	display: grid;
	place-items: center;
	background: rgba(167, 255, 27, .08)
}

.form {
	display: grid;
	gap: var(--space-3)
}

.field {
	display: grid;
	gap: var(--space-2)
}

.field input,
.field textarea {
	background: #0c1016;
	color: #eaf4f6;
	border: 1px solid rgba(255, 255, 255, .08);
	padding: 10px 12px;
	border-radius: 10px;
	outline: none
}

.field input:focus,
.field textarea:focus {
	box-shadow: 0 0 0 2px rgba(167, 255, 27, .35)
}

.actions {
	display: flex;
	gap: var(--space-3);
	flex-wrap: wrap
}

.map-wrap {
	margin-top: var(--space-4);
	border: 1px solid rgba(255, 255, 255, .06);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: var(--shadow)
}

footer {
	padding: 22px 0 30px;
	color: #cddbe2;
	border-top: 1px solid rgba(255, 255, 255, .06);
	background: linear-gradient(180deg, rgba(0, 0, 0, .0), rgba(0, 0, 0, .25))
}

.foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-3)
}

@media (max-width: 720px) {
	.foot {
		flex-direction: column;
		text-align: center
	}
}

.wafloat {
	position: fixed;
	right: 16px;
	bottom: 16px;
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: #25D366;
	display: grid;
	place-items: center;
	color: #001;
	box-shadow: 0 12px 28px rgba(37, 211, 102, .45);
	z-index: 60
}

.wafloat:hover {
	transform: translateY(-2px)
}

.reveal {
	opacity: 0;
	transform: translateY(12px);
	transition: opacity .55s ease, transform .55s ease
}

.reveal.show {
	opacity: 1;
	transform: translateY(0)
}






.social-icons {
    display: flex;
    gap: var(--space-3); /* Usa la variable de espacio que ya tienes definida */
    align-items: center; /* Centra los íconos verticalmente */
}

@media (max-width: 720px) {
    .foot {
        flex-direction: column;
        text-align: center;
    }
    .social-icons {
        justify-content: center; /* Centra los íconos en pantallas pequeñas */
    }
}















/* Estilos para el botón de WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 70px;
    right: 20px;
    z-index: 1000;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
}
















/* Contenedor fijo */
.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}


/* Mensaje: absolutamente posicionado y oculto por defecto */
.whatsapp-message {
    position: absolute;
    top: 50%;
    right: 110%;
    /* Alinea su lado derecho al borde izquierdo del icono */
    transform: translateX(20px) translateY(-50%);
    background-color: #fff;
    /* box-shadow: none; */
    /* Se quita la sombra por completo */
    padding: 5px 5px;
    border-radius: 8px;

    opacity: 0;
    pointer-events: none;
    /* Impide clics cuando está oculto */
    transition:
        opacity 0.3s ease-in-out,
        transform 0.3s ease-in-out;
    white-space: nowrap;
    /* Evita que el texto se divida en varias líneas */
}

/* Al hacer hover sobre el icono, aparece el mensaje */
.whatsapp-float:hover .whatsapp-message {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0) translateY(-50%);
}

/* Estilos de los párrafos dentro del mensaje */
.whatsapp-message p {
    margin: 0;
    font-family: sans-serif;
    color: #333;
    font-size: 14px;
}

/* Segunda línea en negrita */
.whatsapp-message p:last-child {
    font-weight: bold;
}



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










/* Todo esto es Catalogo */



/* === Categorías (grid + tabs) === */
.cat-tabs{display:flex;flex-wrap:wrap;gap:12px;margin-bottom:18px}
.chip{
  appearance:none;border:0;cursor:pointer;
  padding:10px 16px;border-radius:12px;
  background:#1a1f29;color:#e6edf3;border:1px solid rgba(255,255,255,.06);
  transition:.2s;font-weight:600
}
.chip:hover{transform:translateY(-2px)}
.chip.active{
  background:linear-gradient(180deg,#f6a73b,#e4861e);
  color:#1c1000;border-color:#f3a447;
  box-shadow:0 6px 18px rgba(243,164,71,.3)
}

.cat-grid{display:grid;grid-template-columns:repeat(12,1fr);gap:16px}
.cat-card{
  grid-column:span 4;position:relative;border-radius:16px;overflow:hidden;
  border:1px solid rgba(255,255,255,.08);display:block;
  box-shadow:0 14px 28px rgba(0,0,0,.25);transition:.2s
}
.cat-card:hover{transform:translateY(-3px)}
.cat-card img{width:100%;height:100%;object-fit:cover;aspect-ratio:16/9;display:block;filter:contrast(1.02) saturate(1.06)}
.cat-card::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.05),rgba(0,0,0,.55) 70%);
}
.cat-title{
  position:absolute;left:16px;bottom:14px;z-index:2;color:#fff;
  font-weight:800;letter-spacing:.5px;font-size:clamp(1.05rem,2.1vw,1.6rem);
  text-shadow:0 3px 12px rgba(0,0,0,.5)
}
.cat-badge{
  position:absolute;right:12px;top:12px;z-index:2;background:#ffd166;color:#2b1400;
  font-weight:800;padding:6px 10px;border-radius:999px;font-size:.9rem;
  box-shadow:0 6px 18px rgba(255,209,102,.35)
}
.cat-card[hidden]{display:none !important}
@media (max-width:980px){.cat-card{grid-column:span 6}}
@media (max-width:640px){.cat-card{grid-column:span 12}}




















/* el mejor catalogo añadido */


/* PDP (Product Detail Panel) */
.pdp{position:fixed; inset:0; background:rgba(0,0,0,.65); display:none; z-index:80; padding:20px}
.pdp.open{display:grid; place-items:center}
.pdp-card{width:min(980px,92vw); background:#10131a; border:1px solid rgba(255,255,255,.08);
  border-radius:18px; overflow:hidden; box-shadow:0 24px 60px rgba(0,0,0,.45); display:grid; grid-template-columns:1.1fr .9fr}
.pdp-close{position:absolute; margin:10px; right:12px; top:12px; width:42px; height:42px; border-radius:12px; border:1px solid rgba(255,255,255,.2); background:#0b0f14; color:#fff; font-size:22px}
.pdp-media img{width:100%; height:100%; object-fit:cover}
.pdp-body{padding:18px 18px 22px}
.pdp-body h3{margin:0 0 6px; font-size:1.4rem}
.pdp-desc{color:#cfe1d0; margin:0 0 12px}
.pdp-specs h4{margin:12px 0 8px}
.pdp-specs ul{margin:0; padding-left:18px; color:#dde7ee; line-height:1.5}
.pdp-cta{display:flex; gap:12px; margin-top:16px; flex-wrap:wrap}
@media (max-width:900px){ .pdp-card{grid-template-columns:1fr} }














/* medios de pago */
.payment-logo {
  height: 40px; /* Ajusta según el diseño */
  width: auto;
  vertical-align: middle;
  margin-right: 8px;
}
