/* ================================================================
   GIROVISUAL — custom.css
   Carga después de sections.css · Extiende con animaciones,
   hover effects, estilos globales y responsive.
   ================================================================ */

/* ================================================================
   ESTILOS GLOBALES
   ================================================================ */

/* ── Skip-to-content (accesibilidad) ──────────────────────────── */
.gv-skip-link {
	position: absolute;
	top: -100%;
	left: 16px;
	z-index: 9999;
	padding: 12px 24px;
	background: #F26522;
	color: #000000;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: .85rem;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: top .2s;
}

.gv-skip-link:focus {
	top: 16px;
	outline: 3px solid #FFFFFF;
	outline-offset: 2px;
}

/* ── Target del skip link — sin outline visible por defecto ─── */
#gv-main-content:focus {
	outline: none;
}

/* Body base */
body {
	background-color: #000000;
	color: #FFFFFF;
	font-family: 'Inter', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
	width: 6px;
}

::-webkit-scrollbar-track {
	background: #000000;
}

::-webkit-scrollbar-thumb {
	background: #F26522;
	border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
	background: #d4541a;
}

/* Selección de texto */
::selection {
	background: #F26522;
	color: #000000;
}

::-moz-selection {
	background: #F26522;
	color: #000000;
}

/* Focus accesible */
:focus-visible {
	outline: 2px solid #F26522;
	outline-offset: 3px;
	border-radius: 2px;
}

/* ================================================================
   KEYFRAMES
   ================================================================ */

/* Entrada desde abajo */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Entradas laterales */
@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-40px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(40px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Glow pulsante naranja */
@keyframes glowPulse {
	0%, 100% {
		box-shadow: 0 0 8px rgba(242, 101, 34, 0.4),
		            0 0 20px rgba(242, 101, 34, 0.2);
	}
	50% {
		box-shadow: 0 0 18px rgba(242, 101, 34, 0.7),
		            0 0 40px rgba(242, 101, 34, 0.35),
		            0 0 60px rgba(242, 101, 34, 0.15);
	}
}

/* Partículas flotantes */
@keyframes particleFloat {
	0% {
		transform: translateY(0) translateX(0) scale(1);
		opacity: 0.6;
	}
	33% {
		transform: translateY(-18px) translateX(10px) scale(1.1);
		opacity: 0.9;
	}
	66% {
		transform: translateY(-8px) translateX(-8px) scale(0.95);
		opacity: 0.7;
	}
	100% {
		transform: translateY(0) translateX(0) scale(1);
		opacity: 0.6;
	}
}

/* Revelado de texto */
@keyframes textReveal {
	from {
		clip-path: inset(0 100% 0 0);
		opacity: 0;
	}
	to {
		clip-path: inset(0 0% 0 0);
		opacity: 1;
	}
}

/* Cards que crecen */
@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(0.88);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* Underline animado */
@keyframes underlineGrow {
	from { transform: scaleX(0); }
	to   { transform: scaleX(1); }
}

/* Rotación lenta (decorativa) */
@keyframes slowSpin {
	from { transform: rotate(0deg); }
	to   { transform: rotate(360deg); }
}

/* ================================================================
   CLASES DE ANIMACIÓN DIRECTA
   (para elementos que animan al cargar, sin esperar scroll)
   ================================================================ */

.anim-fade-up   { animation: fadeInUp   .8s cubic-bezier(.22,1,.36,1) both; }
.anim-fade-left { animation: fadeInLeft .8s cubic-bezier(.22,1,.36,1) both; }
.anim-fade-right{ animation: fadeInRight .8s cubic-bezier(.22,1,.36,1) both; }
.anim-scale-in  { animation: scaleIn    .7s cubic-bezier(.22,1,.36,1) both; }
.anim-reveal    { animation: textReveal .9s cubic-bezier(.22,1,.36,1) both; }

/* Delays utilitarios (amplían los 5 de sections.css) */
.delay-6  { animation-delay: .6s  !important; transition-delay: .6s  !important; }
.delay-7  { animation-delay: .7s  !important; transition-delay: .7s  !important; }
.delay-8  { animation-delay: .8s  !important; transition-delay: .8s  !important; }

/* ================================================================
   SCROLL ANIMATIONS — extiende .animate-on-scroll de sections.css
   ================================================================ */

/* Variante con animación de revelado de texto */
.animate-on-scroll.text-reveal {
	clip-path: inset(0 100% 0 0);
	opacity: 1; /* overrides la opacity:0 base */
	transition: clip-path .9s cubic-bezier(.22,1,.36,1);
}

.animate-on-scroll.text-reveal.visible {
	clip-path: inset(0 0% 0 0);
	transform: none;
}

/* Variante partícula flotante — activa el float una vez visible */
.animate-on-scroll.particle.visible {
	animation: particleFloat 5s ease-in-out infinite;
}

/* ================================================================
   PARALLAX
   Controlado por JS en animations.js — solo define la transición
   ================================================================ */

.gv-parallax {
	will-change: transform;
	transition: transform .1s linear;
}

/* ================================================================
   HERO — CANVAS DE PARTÍCULAS
   ================================================================ */

#gv-particles {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
}

/* ================================================================
   HOVER EFFECTS — BOTONES
   ================================================================ */

/* Glow pulsante en botón principal al hacer hover */
.gv-btn:not(.gv-btn--ghost):not(.gv-btn--outline-orange):hover {
	animation: glowPulse 1.6s ease infinite;
}

/* Scale sutil en todos los botones */
.gv-btn {
	transition: background .25s, color .25s, transform .25s, box-shadow .25s, border-color .25s;
}

.gv-btn:hover {
	transform: translateY(-3px) scale(1.04);
}

.gv-btn:active {
	transform: translateY(-1px) scale(1.01);
}

/* ================================================================
   HOVER EFFECTS — CARDS DE SERVICIOS
   ================================================================ */

/* Refuerza el glow de sección cards con transición más pronunciada */
.gv-card {
	transition: transform .4s cubic-bezier(.22,1,.36,1),
	            box-shadow .4s,
	            border-color .4s;
}

.gv-card:hover {
	box-shadow:
		0 24px 48px rgba(0, 0, 0, 0.6),
		0 0 0 1px rgba(242, 101, 34, 0.25),
		0 0 30px rgba(242, 101, 34, 0.12);
}

/* Icono de la card se ilumina en hover */
.gv-card:hover .gv-card__icon {
	filter: drop-shadow(0 0 8px rgba(242, 101, 34, 0.6));
	transition: filter .4s;
}

/* ================================================================
   SECCIÓN IA — ICONOS SVG
   ================================================================ */

@keyframes svgGlowPulse {
	0%, 100% {
		filter: drop-shadow(0 0 4px rgba(242,101,34,0.5));
	}
	50% {
		filter: drop-shadow(0 0 10px rgba(242,101,34,0.9))
		        drop-shadow(0 0 20px rgba(242,101,34,0.4));
	}
}

.gv-ia-col__svg {
	color: #F26522;
	display: block;
	margin: 0 auto;
	flex-shrink: 0;
	transition: filter .35s, transform .3s;
}

.gv-ia-col:hover .gv-ia-col__svg {
	animation: svgGlowPulse 1.8s ease infinite;
	transform: scale(1.1);
}

/* ================================================================
   HOVER EFFECTS — PORTAFOLIO
   ================================================================ */

.gv-pitem {
	transition: box-shadow .35s;
}

.gv-pitem:hover {
	box-shadow: 0 0 0 2px #F26522, 0 8px 32px rgba(242, 101, 34, 0.2);
}

/* Overlay con zoom en background ya cubierto en sections.css;
   aquí añadimos el texto "Ver proyecto" con flecha animada */
.gv-pitem__overlay {
	gap: 8px;
	flex-direction: column;
}

.gv-pitem__overlay::after {
	content: '→';
	display: block;
	font-size: 1.4rem;
	transform: translateX(-8px);
	transition: transform .3s cubic-bezier(.22,1,.36,1);
}

.gv-pitem:hover .gv-pitem__overlay::after {
	transform: translateX(0);
}

/* ================================================================
   HOVER EFFECTS — LINKS DE TEXTO
   ================================================================ */

/* Links dentro del contenido con underline naranja animado */
.wp-block-post-content a:not(.gv-btn),
.entry-content a:not(.gv-btn),
.gv-link {
	color: #FFFFFF;
	text-decoration: none;
	position: relative;
}

.wp-block-post-content a:not(.gv-btn)::after,
.entry-content a:not(.gv-btn)::after,
.gv-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 1px;
	background: #F26522;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .3s cubic-bezier(.22,1,.36,1);
}

.wp-block-post-content a:not(.gv-btn):hover::after,
.entry-content a:not(.gv-btn):hover::after,
.gv-link:hover::after {
	transform: scaleX(1);
}

.wp-block-post-content a:not(.gv-btn):hover,
.entry-content a:not(.gv-btn):hover,
.gv-link:hover {
	color: #F26522;
}

/* ================================================================
   HAMBURGER MENU
   ================================================================ */

.gv-hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	padding: 6px;
	background: transparent;
	border: none;
	cursor: pointer;
	z-index: 1000;
}

.gv-hamburger__bar {
	display: block;
	width: 100%;
	height: 2px;
	background: #FFFFFF;
	border-radius: 2px;
	transition: transform .3s cubic-bezier(.22,1,.36,1),
	            opacity .2s,
	            background .2s;
	transform-origin: center;
}

/* Estado activo — X */
.gv-hamburger.is-active .gv-hamburger__bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.gv-hamburger.is-active .gv-hamburger__bar:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

.gv-hamburger.is-active .gv-hamburger__bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Menú móvil overlay */
.gv-nav-mobile {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.97);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	z-index: 999;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 32px;
	opacity: 0;
	pointer-events: none;
	transition: opacity .35s cubic-bezier(.22,1,.36,1);
}

.gv-nav-mobile.is-open {
	opacity: 1;
	pointer-events: all;
}

.gv-nav-mobile a {
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(1.5rem, 5vw, 2.5rem);
	font-weight: 800;
	color: #FFFFFF;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 3px;
	position: relative;
	transition: color .2s;
}

.gv-nav-mobile a:hover { color: #F26522; }

.gv-nav-mobile a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 100%;
	height: 2px;
	background: #F26522;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .3s cubic-bezier(.22,1,.36,1);
}

.gv-nav-mobile a:hover::after { transform: scaleX(1); }

/* Entrada de items del menú */
.gv-nav-mobile.is-open a {
	animation: fadeInUp .5s cubic-bezier(.22,1,.36,1) both;
}

.gv-nav-mobile.is-open a:nth-child(1) { animation-delay: .05s; }
.gv-nav-mobile.is-open a:nth-child(2) { animation-delay: .10s; }
.gv-nav-mobile.is-open a:nth-child(3) { animation-delay: .15s; }
.gv-nav-mobile.is-open a:nth-child(4) { animation-delay: .20s; }
.gv-nav-mobile.is-open a:nth-child(5) { animation-delay: .25s; }

/* ================================================================
   RESPONSIVE — MOBILE FIRST
   ================================================================ */

/* ── 768px — Tablets ────────────────────────────────────────── */
@media (max-width: 768px) {

	.gv-hamburger {
		display: flex;
	}

	/* Desactiva el menú de escritorio del padre en móvil si aplica */
	.wp-block-navigation__container {
		display: none;
	}

	/* Ajuste de cards al stack en una columna */
	.gv-services__grid {
		grid-template-columns: 1fr;
	}

	.gv-ia-highlight__cols {
		grid-template-columns: 1fr;
	}

	/* Portfolio 2 columnas */
	.gv-portfolio__grid {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: auto;
	}

	/* Stats 2x2 */
	.gv-stats__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	/* Reducir padding de secciones */
	.gv-section {
		padding: 64px 20px;
	}

	/* Hero ajustes */
	.gv-hero {
		padding: 100px 20px 60px;
	}

	.gv-hero__actions {
		flex-direction: column;
		align-items: center;
	}

	.gv-hero__actions .gv-btn {
		width: 100%;
		max-width: 280px;
		text-align: center;
	}
}

/* ── 1024px — Tablets landscape / laptops ───────────────────── */
@media (min-width: 769px) and (max-width: 1024px) {

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

	/* El 5to card ocupa todo el ancho */
	.gv-services__grid .gv-card:last-child {
		grid-column: 1 / -1;
		max-width: 520px;
		margin: 0 auto;
	}

	.gv-ia-highlight__cols {
		grid-template-columns: repeat(3, 1fr);
	}

	.gv-portfolio__grid {
		grid-template-rows: repeat(2, 200px);
	}

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

/* ── 1440px — Pantallas grandes ────────────────────────────── */
@media (min-width: 1440px) {

	.gv-container {
		max-width: 1320px;
	}

	.gv-section {
		padding: 120px 60px;
	}

	.gv-hero__title {
		font-size: 6rem;
	}

	.gv-section-title {
		font-size: 4rem;
	}

	.gv-services__grid {
		grid-template-columns: repeat(5, 1fr);
	}

	.gv-portfolio__grid {
		grid-template-rows: repeat(2, 260px);
	}

	.gv-stats__grid {
		gap: 48px;
	}
}

/* ================================================================
   HEADER STICKY
   ================================================================ */

/* ── Base ────────────────────────────────────────────────────── */
.gv-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 900;
	height: 90px;
	background: transparent;
	border-bottom: 2px solid transparent;
	transition:
		background   .4s cubic-bezier(.22,1,.36,1),
		height       .4s cubic-bezier(.22,1,.36,1),
		border-color .4s,
		box-shadow   .4s;
}

/* ── Estado al scrollear ──────────────────────────────────────── */
.gv-header.scrolled {
	height: 65px;
	background: rgba(0, 0, 0, 0.88);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom-color: #F26522;
	box-shadow:
		0 0 20px rgba(242,101,34,.18),
		0 4px 40px rgba(242,101,34,.08),
		0 8px 32px rgba(0,0,0,.5);
}

/* ── Inner layout ─────────────────────────────────────────────── */
.gv-header__inner {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
	gap: 32px;
}

/* ── Logo ─────────────────────────────────────────────────────── */
.gv-header__logo {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	flex-shrink: 0;
}

.gv-header__logo-mark {
	display: flex;
	align-items: center;
	transition: transform .3s cubic-bezier(.22,1,.36,1);
}

.gv-header__logo:hover .gv-header__logo-mark {
	transform: rotate(90deg);
}

.gv-header__logo-mark svg {
	height: 55px;
	width: auto;
	transition: height .4s cubic-bezier(.22,1,.36,1);
}

.gv-header.scrolled .gv-header__logo-mark svg {
	height: 40px;
}

.gv-header__logo-text {
	font-family: 'Montserrat', sans-serif;
	font-weight: 900;
	font-size: .95rem;
	color: #FFFFFF;
	letter-spacing: 3px;
	text-transform: uppercase;
	transition: color .2s;
}

.gv-header__logo:hover .gv-header__logo-text {
	color: #F26522;
}

/* ── Navegación desktop ───────────────────────────────────────── */
.gv-header__nav {
	display: flex;
	align-items: center;
	gap: 8px;
}

.gv-header__link {
	font-family: 'Inter', sans-serif;
	font-size: .82rem;
	font-weight: 500;
	color: rgba(255,255,255,.75);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	padding: 6px 12px;
	position: relative;
	transition: color .2s;
}

.gv-header__link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 12px;
	right: 12px;
	height: 1px;
	background: #F26522;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .3s cubic-bezier(.22,1,.36,1);
}

.gv-header__link:hover {
	color: #FFFFFF;
}

.gv-header__link:hover::after {
	transform: scaleX(1);
}

/* Link activo */
.gv-header__link.is-active {
	color: #F26522;
}

.gv-header__link.is-active::after {
	transform: scaleX(1);
}

/* ── Derecha: CTA + hamburger ─────────────────────────────────── */
.gv-header__right {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-shrink: 0;
}

/* Botón pequeño para el header */
.gv-btn--sm {
	padding: 10px 24px;
	font-size: .75rem;
}

.gv-header__cta {
	/* Visible en desktop, oculto en mobile */
}

/* ── Hamburger — heredado de custom.css pero solo visible mobile ─ */
.gv-hamburger {
	display: none; /* Override desde el @media de abajo */
}

/* ── Menú mobile overlay ─────────────────────────────────────── */
.gv-nav-mobile {
	/* Hereda estilos base de la sección Hamburger menu en este mismo archivo */
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0;
	padding: 60px 40px 48px;
}

.gv-nav-mobile__close {
	position: absolute;
	top: 24px;
	right: 28px;
	background: transparent;
	border: none;
	color: rgba(255,255,255,.7);
	cursor: pointer;
	padding: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color .2s, transform .3s;
}

.gv-nav-mobile__close:hover {
	color: #F26522;
	transform: rotate(90deg);
}

.gv-nav-mobile__brand {
	font-family: 'Montserrat', sans-serif;
	font-weight: 900;
	font-size: .85rem;
	color: rgba(255,255,255,.2);
	letter-spacing: 5px;
	text-transform: uppercase;
	margin-bottom: 56px;
}

.gv-nav-mobile__links {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	width: 100%;
	margin-bottom: 48px;
}

.gv-nav-mobile__links a {
	font-family: 'Montserrat', sans-serif;
	font-size: clamp(1.8rem, 6vw, 3rem);
	font-weight: 900;
	color: rgba(255,255,255,.85);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding: 10px 0;
	position: relative;
	transition: color .2s;
}

.gv-nav-mobile__links a::after {
	content: '';
	position: absolute;
	bottom: 8px;
	left: 0;
	width: 100%;
	height: 2px;
	background: #F26522;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .35s cubic-bezier(.22,1,.36,1);
}

.gv-nav-mobile__links a:hover {
	color: #FFFFFF;
}

.gv-nav-mobile__links a:hover::after {
	transform: scaleX(1);
}

/* Stagger de links al abrir */
.gv-nav-mobile.is-open .gv-nav-mobile__links a {
	animation: fadeInUp .45s cubic-bezier(.22,1,.36,1) both;
}

.gv-nav-mobile.is-open .gv-nav-mobile__links a:nth-child(1) { animation-delay: .06s; }
.gv-nav-mobile.is-open .gv-nav-mobile__links a:nth-child(2) { animation-delay: .12s; }
.gv-nav-mobile.is-open .gv-nav-mobile__links a:nth-child(3) { animation-delay: .18s; }
.gv-nav-mobile.is-open .gv-nav-mobile__links a:nth-child(4) { animation-delay: .24s; }
.gv-nav-mobile.is-open .gv-nav-mobile__links a:nth-child(5) { animation-delay: .30s; }

.gv-nav-mobile.is-open .gv-nav-mobile__cta {
	animation: fadeInUp .45s .38s cubic-bezier(.22,1,.36,1) both;
}

.gv-nav-mobile__cta {
	margin-bottom: 32px;
}

.gv-nav-mobile__tagline {
	font-family: 'Inter', sans-serif;
	font-size: .7rem;
	color: rgba(255,255,255,.25);
	letter-spacing: 3px;
	text-transform: uppercase;
	margin: 0;
	animation: fadeInUp .45s .44s cubic-bezier(.22,1,.36,1) both;
}

/* Bloquea scroll del body cuando el menú está abierto */
body.gv-menu-open {
	overflow: hidden;
}

/* ── Header responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
	.gv-header__nav {
		gap: 0;
	}

	.gv-header__link {
		padding: 6px 8px;
		font-size: .78rem;
	}
}

@media (max-width: 768px) {
	.gv-header__inner {
		padding: 0 20px;
	}

	.gv-header__nav {
		display: none; /* Sustituido por el overlay móvil */
	}

	.gv-header__cta {
		display: none; /* Solo en mobile — el CTA está dentro del overlay */
	}

	.gv-hamburger {
		display: flex; /* Activa el hamburger */
	}
}

/* ── Active link highlight — detectado por JS con IntersectionObserver ─ */
.gv-header__link[data-section].is-active {
	color: #F26522;
}

/* ── Print — ocultar animaciones ────────────────────────────── */
@media print {
	.animate-on-scroll,
	.gv-hero::before,
	.gv-hero::after,
	.gv-cta-final::before {
		animation: none !important;
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
}

/* ── Respeto por prefers-reduced-motion ─────────────────────── */
/* ================================================================
   STATS — CARD ESPECIAL "ADN CREATIVO"
   ================================================================ */

.gv-stat--featured {
	text-align: left;
	border-color: rgba(242,101,34,.2);
	background: linear-gradient(135deg, rgba(242,101,34,.04) 0%, transparent 100%);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.gv-stat--featured:hover {
	border-color: rgba(242,101,34,.45);
}

.gv-stat__featured-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.3rem;
	font-weight: 900;
	color: #F26522;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0 0 14px;
}

.gv-stat__featured-desc {
	font-family: 'Inter', sans-serif;
	font-size: .85rem;
	color: rgba(255,255,255,.55);
	line-height: 1.8;
	margin: 0;
}

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

.gv-footer {
	background: #0A0A0A;
	padding-top: 80px;
	padding-bottom: 0;
}

.gv-footer__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
}

/* ── Grid 4 columnas ─────────────────────────────────────────── */
.gv-footer__grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: 56px;
	padding-bottom: 64px;
}

/* ── Col Marca ───────────────────────────────────────────────── */
.gv-footer__logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	margin-bottom: 24px;
}

.gv-footer__logo-mark {
	display: flex;
	align-items: center;
	transition: transform .35s cubic-bezier(.22,1,.36,1);
}

.gv-footer__logo:hover .gv-footer__logo-mark {
	transform: rotate(90deg);
}

.gv-footer__logo-text {
	font-family: 'Montserrat', sans-serif;
	font-weight: 900;
	font-size: .9rem;
	color: #FFFFFF;
	letter-spacing: 3px;
	text-transform: uppercase;
	transition: color .2s;
}

.gv-footer__logo:hover .gv-footer__logo-text {
	color: #F26522;
}

.gv-footer__desc {
	font-family: 'Inter', sans-serif;
	font-size: .85rem;
	color: rgba(255,255,255,.4);
	line-height: 1.8;
	margin: 0 0 20px;
}

.gv-footer__tagline {
	font-family: 'Inter', sans-serif;
	font-size: .7rem;
	font-weight: 600;
	color: #F26522;
	letter-spacing: 3px;
	text-transform: uppercase;
	margin: 0;
}

/* ── Headings de columna ─────────────────────────────────────── */
.gv-footer__heading {
	font-family: 'Montserrat', sans-serif;
	font-size: .75rem;
	font-weight: 800;
	color: #FFFFFF;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin: 0 0 24px;
	position: relative;
	padding-bottom: 12px;
}

.gv-footer__heading::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 24px;
	height: 2px;
	background: #F26522;
}

/* ── Lista de servicios ──────────────────────────────────────── */
.gv-footer__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.gv-footer__link {
	font-family: 'Inter', sans-serif;
	font-size: .85rem;
	color: rgba(255,255,255,.45);
	text-decoration: none;
	padding: 5px 0;
	display: inline-block;
	position: relative;
	transition: color .2s, padding-left .2s;
}

.gv-footer__link::before {
	content: '›';
	position: absolute;
	left: -12px;
	opacity: 0;
	color: #F26522;
	transition: opacity .2s, left .2s;
}

.gv-footer__link:hover {
	color: #FFFFFF;
	padding-left: 14px;
}

.gv-footer__link:hover::before {
	opacity: 1;
	left: 0;
}

/* ── Contacto ────────────────────────────────────────────────── */
.gv-footer__contact {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.gv-footer__contact-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-family: 'Inter', sans-serif;
	font-size: .85rem;
	color: rgba(255,255,255,.45);
	line-height: 1.5;
}

.gv-footer__contact-icon {
	width: 16px;
	height: 16px;
	color: #F26522;
	flex-shrink: 0;
	margin-top: 2px;
}

.gv-footer__contact-item a {
	color: rgba(255,255,255,.45);
	text-decoration: none;
	transition: color .2s;
}

.gv-footer__contact-item a:hover {
	color: #F26522;
}

/* ── Redes sociales ──────────────────────────────────────────── */
.gv-footer__social-caption {
	font-family: 'Inter', sans-serif;
	font-size: .8rem;
	color: rgba(255,255,255,.35);
	margin: 0 0 20px;
	line-height: 1.5;
}

.gv-footer__socials {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 32px;
}

.gv-footer__social {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	padding: 8px 12px;
	border: 1px solid rgba(255,255,255,.06);
	transition: border-color .25s, background .25s, transform .25s;
}

.gv-footer__social svg {
	width: 18px;
	height: 18px;
	color: rgba(255,255,255,.4);
	flex-shrink: 0;
	transition: color .25s;
}

.gv-footer__social span {
	font-family: 'Inter', sans-serif;
	font-size: .78rem;
	font-weight: 500;
	color: rgba(255,255,255,.4);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	transition: color .25s;
}

.gv-footer__social:hover {
	border-color: rgba(242,101,34,.4);
	background: rgba(242,101,34,.05);
	transform: translateX(4px);
}

.gv-footer__social:hover svg,
.gv-footer__social:hover span {
	color: #F26522;
}

/* ── Divisor ─────────────────────────────────────────────────── */
.gv-footer__divider {
	padding: 0;
}

.gv-footer__divider-line {
	display: block;
	height: 1px;
	background: linear-gradient(
		to right,
		transparent 0%,
		rgba(242,101,34,.5) 20%,
		rgba(242,101,34,.5) 80%,
		transparent 100%
	);
}

/* ── Bottom bar ──────────────────────────────────────────────── */
.gv-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-top: 24px;
	padding-bottom: 28px;
	flex-wrap: wrap;
}

.gv-footer__copy {
	font-family: 'Inter', sans-serif;
	font-size: .75rem;
	color: rgba(255,255,255,.25);
	margin: 0;
	line-height: 1.5;
}

.gv-footer__legal {
	display: flex;
	align-items: center;
	gap: 10px;
}

.gv-footer__legal span {
	color: rgba(255,255,255,.15);
	font-size: .75rem;
}

.gv-footer__legal-link {
	font-family: 'Inter', sans-serif;
	font-size: .75rem;
	color: rgba(255,255,255,.25);
	text-decoration: none;
	transition: color .2s;
}

.gv-footer__legal-link:hover {
	color: #F26522;
}

/* ── CTA en footer ───────────────────────────────────────────── */
.gv-footer__cta {
	margin-top: 4px;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
	.gv-footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
}

@media (max-width: 768px) {
	.gv-footer__grid {
		grid-template-columns: 1fr;
		gap: 40px;
		padding-bottom: 48px;
	}

	.gv-footer__container {
		padding: 0 20px;
	}

	.gv-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.gv-footer__socials {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
}

/* ================================================================
   RESPONSIVE — prefers-reduced-motion (debe ir al final)
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
		scroll-behavior: auto !important;
	}

	.animate-on-scroll {
		opacity: 1;
		transform: none;
	}
}
