/*
Theme Name: Social Media Perú
Theme URI: https://socialmediaperu.pe
Author: SEO Consulting Perú
Author URI: https://seoconsultingperu.com
Description: Theme en blanco para Social Media Perú, producto de SEO Consulting Perú dedicado a gestión de redes sociales y creación de contenido. Optimizado para SEO, GEO (Generative Engine Optimization) y AEO (Answer Engine Optimization). Estructura lista para maquetar sin dependencias de builders pesados.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: smp
*/

/* ==========================================================================
   Reset mínimo. El diseño real se agrega en assets/css/main.css
   ========================================================================== */

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

body {
	margin: 0;
	font-family: var(--smp-font-body), sans-serif;
	color: var(--smp-color-text);
	background: var(--smp-color-bg);
}

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

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

.container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 0px;
}

:root {
  --color1: #5b46f6; /* Amarillo/Verde lima Neón */
  --color2: #000000; /* Negro Fondo */
  --color3: #ffffff; /* Blanco Texto */
  --color-dark: #121212; /* Fondo del menú desplegable móvil */
  --font1: 'Montserrat', sans-serif;
  --font2: 'Roboto Condensed', sans-serif;
  --font3: 'Arial', sans-serif;
  --font-heading: 'Oswald', sans-serif;
}




/* Estructura del Header */
.header {
  width: 100%;
  background-color: var(--color2);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--color3);
  flex-shrink: 0;
}

.logo-icon {
  width: 32px;
  height: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-weight: 800;
  font-size: 0.85rem;
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.logo-text .highlight {
  color: var(--color1);
  font-size: 0.7rem;
}

/* Menú de Navegación (Desktop) */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.75rem; /* Separación reducida para ajustar los ítems */
  list-style: none;
}

/* Enlaces del Menú: Fuente más delgada (font-weight: 500) pero nítida */
.nav-link {
  color: var(--color3);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 500; /* Estilo estilizado y legible sin ser muy grueso */
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 4px 6px;
  white-space: nowrap; /* Evita roturas de línea en ítems largos */
  transition: color 0.3s ease;
  font-family: var(--font2);
}

.nav-link:hover {
  color: var(--color1);
}

/* Item Activo */
.nav-link.active {
  background-color: var(--color1);
  color: var(--color2);
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 3px;
}

/* Botón de Contacto */
.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--color1);
  color: var(--color1);
  padding: 6px 14px;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 3px;
  white-space: nowrap;
  margin-left: 0.5rem;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background-color: var(--color1);
  color: var(--color2);
}

/* Toggle Menú Móvil */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  color: var(--color3);
  cursor: pointer;
}

#menu-check {
  display: none;
}
/* Banner Hero Section */
.hero {
  position: relative;
  width: 100%;
  background-color: var(--color2);
  padding: 4rem 2rem 2rem;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 2rem;
  position: relative;
}

/* Fondo de Hashtag gigante decorativo (#) */
.hero-bg-hashtag {
  position: absolute;
  top: -20px;
  left: -40px;
  font-size: 14rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  user-select: none;
  line-height: 1;
  z-index: 1;
}

/* Columna Izquierda: Contenido */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--color3);
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.hero-title .dot {
  color: var(--color1);
}

.hero-description {
  font-family: var(--font1);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  background-color: var(--color1);
  color: var(--color2);
  padding: 14px 28px;
  font-weight: 800;
  font-size: 0.8rem;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.btn-secondary {
  color: var(--color3);
  font-weight: 700;
  font-size: 0.8rem;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.btn-secondary:hover {
  color: var(--color1);
}

/* Columna Derecha: Imagen y Elementos Superpuestos */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

/* Pincelada amarilla superpuesta arriba de la imagen */
.brush-overlay {
    position: absolute;
    top: -30px;
    left: -42px;
    width: 329px;
    height: 27px;
	opacity: 0.9;
    z-index: 3;
}

.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  border-radius: 4px;
  overflow: hidden;
  filter: grayscale(100%); /* Efecto blanco y negro como en la foto */
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Tarjeta flotante de métricas (Engagement +237%) */
.card-stats {
  position: absolute;
  bottom: 40px;
  left: -30px;
  background-color: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(212, 255, 0, 0.4);
  padding: 12px 18px;
  border-radius: 6px;
  backdrop-filter: blur(5px);
  z-index: 4;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.card-stats .label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--color1);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-stats .value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color3);
  margin: 2px 0;
}

.card-stats .graph-icon {
  color: var(--color1);
  font-size: 1.2rem;
  display: flex;
  justify-content: flex-end;
}

/* Elemento gráfico circular superpuesto */
.circle-overlay {
  position: absolute;
  bottom: -20px;
  right: -10px;
  width: 110px;
  height: 110px;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
}

.circle-overlay::after {
  content: '✦ DESIGN ✦';
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 2px;
}

/* Barra Lateral de Redes Sociales */
.social-sidebar {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 10;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color3);
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  border-color: var(--color1);
  color: var(--color1);
}

.social-icon.highlight-icon {
  background-color: var(--color1);
  color: var(--color2);
  border-color: var(--color1);
}

.social-icon.highlight-icon:hover {
  transform: scale(1.1);
}
/* Sección Contenedor Unificado */
.brands-about-section {
  width: 100%;
  background-color: var(--color2);
  padding: 3rem 1.5rem 1rem;
  color: var(--color3);
}

.main-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Divisor horizontal fino */
.section-divider {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 2.5rem 0 4rem;
}

/* --- ESTILOS BLOQUE MARCAS --- */
.brands-bar {
  display: flex;
  align-items: center;
  gap: 2rem;
  overflow: hidden;
}

.brands-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  flex-shrink: 0;
  text-transform: uppercase;
}

.brands-carousel {
  flex-grow: 1;
}

.brands-carousel .item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-logo {
  font-family: var(--font1);
  font-weight: 800;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
  transition: color 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.brand-logo:hover {
  color: var(--color3);
}

/* --- ESTILOS BLOQUE SOBRE LA AGENCIA --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.tagline {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--color1);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.about-heading {
  font-family: var(--font1);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color3);
  letter-spacing: -0.5px;
}

.about-heading .highlight-text {
  color: var(--color1);
}

.about-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3rem;
}

/* Grilla de Pilares */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pillar-icon {
  font-size: 1.4rem;
  color: var(--color1);
}

.pillar-content h3 {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  color: var(--color3);
}

.pillar-content p {
  font-size: 0.75rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.6);
}
/* --- SECCIÓN NUESTROS 4 PILARES REVISION --- */
.pillars-section {
  width: 100%;
  background-color: var(--color2);
  padding: 2rem 1.5rem 6rem;
  color: var(--color3);
}

.pillars-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.5rem;
  gap: 2rem;
}

.pillars-subtitle {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color1);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.pillars-title {
  font-family: var(--font1);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.pillars-title .highlight {
  color: var(--color1);
}

.btn-all-services {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--color3);
  padding: 10px 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 2px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.btn-all-services:hover {
  border-color: var(--color1);
  color: var(--color1);
}

/* Grilla de Tarjetas */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Tarjeta Principal */
.pillar-card {
  background-color: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 255, 0, 0.4);
}

/* Área de Imagen Extendida */
.card-image-wrapper {
  position: relative;
  width: 100%;
  height: 280px; /* Incrementado para llegar detrás del título */
  background-color: #121212;
  overflow: hidden;
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
  opacity: 0.65;
  transition: opacity 0.3s ease, transform 0.5s ease;
}

.pillar-card:hover .card-image-wrapper img {
  opacity: 0.85;
  transform: scale(1.05);
}

/* DEGRADADO INFERIOR: Funde la imagen con la tarjeta */
.card-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%; /* Ocupa el 60% inferior de la imagen */
  background: linear-gradient(to bottom, transparent 0%, #0b0b0b 100%);
  pointer-events: none;
}

/* Filtro Magenta Tarjeta 02 */
.overlay-magenta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 0, 128, 0.6), rgba(0, 0, 0, 0.8));
  mix-blend-mode: multiply;
  z-index: 1;
}

/* Bloque de Contenido Inferior (Superpuesto en la imagen) */
.card-content {
  padding: 0 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  margin-top: -90px; /* Desplaza el texto hacia arriba sobre la imagen */
  z-index: 5;
}

/* NÚMEROS CON SÓLO BORDE BLANCO (STROKE) */
.card-number-stroke {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.45);
  line-height: 1;
  margin-bottom: 0.2rem;
  user-select: none;
  transition: -webkit-text-stroke 0.3s ease;
}

.pillar-card:hover .card-number-stroke {
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.85);
}

/* Título de Tarjeta */
.card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color3);
  letter-spacing: 0.5px;
  margin-bottom: 0.8rem;
  line-height: 1.1;
}

.card-title::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--color1);
  margin-top: 8px;
}

.card-description {
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}

.card-arrow-btn {
  margin-top: auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color3);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.pillar-card:hover .card-arrow-btn {
  background-color: var(--color1);
  color: var(--color2);
  border-color: var(--color1);
}

/* Elementos para Tarjeta 03 (Métricas) */
.inner-stats-box {
  position: absolute;
  top: 25px;
  left: 20px;
  right: 20px;
  background: rgba(20, 20, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 16px;
  border-radius: 8px;
  backdrop-filter: blur(4px);
  z-index: 2;
}

.stats-label {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.5);
}

.stats-num {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color3);
  display: flex;
  align-items: center;
  gap: 8px;
}

.stats-num .badge {
  font-size: 0.65rem;
  color: var(--color1);
}

.platform-icons {
  position: absolute;
  top: 135px;
  right: 20px;
  display: flex;
  gap: 10px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  z-index: 3;
}

/* Símbolos Flotantes Animados */
.floating-symbol {
  position: absolute;
  z-index: 4;
  pointer-events: none;
  filter: drop-shadow(0 0 6px rgba(212, 255, 0, 0.6));
}

.symbol-crown {
  top: 25px;
  left: 20px;
  width: 70px;
}

.symbol-crown-2 {
  top: 90px;
  left: 20px;
  width: 55px;
}

.symbol-circle {
  top: 30px;
  right: 20px;
  width: 60px;
}

.stats-chart {
  width: 100%;
  margin-top: 5px;
}

/* Animaciones */
.float-anim-1 {
  animation: floatingLoop1 4s ease-in-out infinite;
}

.float-anim-2 {
  animation: floatingLoop2 5s ease-in-out infinite;
}

.float-anim-3 {
  animation: pulseChart 3s ease-in-out infinite;
}

@keyframes floatingLoop1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(3deg); }
}

@keyframes floatingLoop2 {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.05); }
}

@keyframes pulseChart {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.02); }
}

/* Responsive */
@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* --- SECCIÓN CREATIVIDAD CON PROPÓSITO --- */
.creativity-section {
  width: 100%;
  background-color: var(--color2);
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.creativity-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

/* --- COLUMNA IZQUIERDA --- */
.creativity-title {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--color3);
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
}

.creativity-title .highlight {
  color: var(--color1);
}

.description-wrapper {
  position: relative;
  margin-bottom: 3rem;
}

.arrow-svg {
  position: absolute;
  top: -10px;
  left: -45px;
  width: 45px;
  height: 45px;
  filter: drop-shadow(0 0 6px rgba(212, 255, 0, 0.5));
}

.creativity-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 440px;
}

/* Contador de Estadísticas */
.stats-counter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color3);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.2;
}

/* --- COLUMNA DERECHA: VISUAL CON MÁSCARA Y PINCELADA --- */
.creativity-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

/* Pincelada Morada Diagonal */
.purple-brush {
	position: absolute;
    top: -3%;
    left: -12%;
    width: 311px;
    height: 75px;
  z-index: 4;
  opacity: 0.9;
  filter: drop-shadow(0 5px 15px rgba(138, 43, 226, 0.4));
}

/* Contenedor de Imagen */
.glitch-image-container {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 360px;
  border-radius: 4px;
  overflow: hidden;
  background-color: #111;
}

.base-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.15);
  display: block;
}

/* Capa y Animación de Efecto Glitch */
.glitch-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&q=80&w=800") no-repeat center center/cover;
  filter: grayscale(100%) contrast(1.3);
  opacity: 0.8;
  animation: glitchMask 4s infinite linear alternate-reverse;
  pointer-events: none;
}

@keyframes glitchMask {
  0% {
    clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
    transform: translate(-4px, 0);
  }
  5% {
    clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%);
    transform: translate(0, 0);
  }
  10% {
    clip-path: polygon(0 40%, 100% 40%, 100% 48%, 0 48%);
    transform: translate(5px, 0);
  }
  15% {
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  }
  60% {
    clip-path: polygon(0 70%, 100% 70%, 100% 73%, 0 73%);
    transform: translate(-3px, 0);
  }
  65% {
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  }
  80% {
    clip-path: polygon(0 85%, 100% 85%, 100% 98%, 0 98%);
    transform: translate(4px, 0);
  }
  85% {
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  }
  100% {
    clip-path: polygon(0 25%, 100% 25%, 100% 30%, 0 30%);
    transform: translate(-2px, 0);
  }
}

/* Elementos SVG Decorativos Flotantes */
.star-svg {
  position: absolute;
  top: -25px;
  left: 30%;
  width: 50px;
  height: 50px;
  z-index: 3;
}

.bottom-decorations {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 120px;
  height: 120px;
  z-index: 5;
  pointer-events: none;
}

.yellow-doodle {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 50px;
  height: 50px;
  z-index: 2;
  filter: drop-shadow(0 0 5px rgba(212, 255, 0, 0.6));
}

.geometric-fragment {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
/* --- SECCIÓN CASOS DE ÉXITO --- */
.cases-section {
  width: 100%;
  background-color: var(--color2);
  padding: 5rem 1.5rem;
  color: var(--color3);
  overflow: hidden;
}

.cases-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.5rem;
  gap: 2rem;
}

.cases-subtitle {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color1);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.cases-title {
  font-family: var(--font1);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.cases-title .highlight {
  color: var(--color1);
}

.btn-all-cases {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--color3);
  padding: 10px 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 2px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.btn-all-cases:hover {
  border-color: var(--color1);
  color: var(--color1);
}

/* Tarjeta del Caso */
.case-card {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 6px;
  overflow: hidden;
  background-color: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
  opacity: 0.5;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.case-card:hover img {
  opacity: 0.8;
  transform: scale(1.05);
}

/* Sombreado y Textos sobre la imagen */
.case-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 10%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
}

.case-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color3);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.case-label {
  font-family: var(--font1);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.case-category {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--color1);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* REGLA CLAVE EN CSS PARA MOVIMIENTO LINEAL Y CONTINUO SINFÍN EN OWL CAROUSEL */
.cases-carousel .owl-stage {
  transition-timing-function: linear !important;
}
/* --- SECCIÓN FOOTER --- */
.footer-section {
  width: 100%;
  background-color: var(--color2);
  padding: 4rem 1.5rem 2rem;
  color: var(--color3);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Tarjeta CTA Superior */
.footer-cta-card {
  position: relative;
  background-color: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 3rem 3.5rem;
  margin-bottom: 4rem;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--color3);
  letter-spacing: -0.5px;
}

.cta-title .highlight {
  color: var(--color1);
}

.cta-description {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.btn-cta {
  background-color: var(--color1);
  color: var(--color2);
  padding: 14px 28px;
  font-weight: 800;
  font-size: 0.8rem;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.cta-lines-svg {
  position: absolute;
  top: 0;
  right: 0;
  width: 220px;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Grilla del Footer Principal */
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1.3fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color3);
  margin-bottom: 1.2rem;
}

/* Columna de Marca */
.footer-logo {
  margin-bottom: 1rem;
}

.footer-about {
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.social-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color3);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.social-btn:hover {
  border-color: var(--color1);
  color: var(--color1);
}

/* Listas de Enlaces */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.75rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color1);
}

/* Columna de Contacto */
.contact-col {
  position: relative;
}

.footer-contact-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-contact-info li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact-info i {
  color: var(--color1);
  font-size: 0.85rem;
}

.footer-contact-info a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-info a:hover {
  color: var(--color3);
}

/* Botón de WhatsApp Circular */
.whatsapp-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color3);
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  border-color: #25d366;
  color: #25d366;
  transform: scale(1.08);
}

/* Copyright Final */
.footer-bottom {
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.4);
}


.only-mobile { display: none; }
 
/* ==========================================================================
   HERO
   ========================================================================== */
.cnt-hero {
  width: 100%;
  background-color: var(--color2);
  padding: 3rem 1.5rem 5rem;
}
 
.cnt-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}
 
.cnt-hero-title {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--color3);
  letter-spacing: -0.5px;
  margin: 2rem 0 1.5rem;
}
 
.cnt-hero-title .highlight { color: var(--color1); }
.cnt-hero-title .dot { color: var(--color1); }
 
.cnt-hero-description {
  font-family: var(--font1);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 460px;
  margin-bottom: 2.2rem;
}
 
/* --- Bento visual del hero --- */
.cnt-hero-bento {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 380px;
}
 
.cnt-bento-tile {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background-color: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
 
.cnt-bento-tile--tall { grid-row: span 2; }
 
.cnt-bento-tile img,
.cnt-bento-tile video,
.cnt-bento-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.1);
  opacity: 0.85;
}
 
.cnt-bento-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background-color: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(212, 255, 0, 0.4);
  color: var(--color1);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 4px 8px;
  border-radius: 4px;
  backdrop-filter: blur(3px);
  z-index: 2;
}
 
/* ==========================================================================
   BENTO — Creación de Contenido + Diseño Gráfico (grilla, no carrusel)
   ========================================================================== */
.cnt-bento-section {
  width: 100%;
  background-color: var(--color2);
  padding: 2rem 1.5rem 6rem;
  color: var(--color3);
}
 
.cnt-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}
 
.cnt-mosaic-item {
  position: relative;
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  background-color: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
 
.cnt-mosaic-item:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 255, 0, 0.35);
}
 
.cnt-mosaic-item--big {
  grid-column: span 2;
  grid-row: span 2;
}
 
.cnt-mosaic-item--video,
.cnt-mosaic-item--gif {
  grid-row: span 1;
}
 
.cnt-mosaic-item img,
.cnt-mosaic-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.1);
  opacity: 0.7;
  transition: opacity 0.4s ease, transform 0.5s ease;
}
 
.cnt-mosaic-item:hover img,
.cnt-mosaic-item:hover video {
  opacity: 0.95;
  transform: scale(1.04);
}
 
.cnt-mosaic-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 20%, transparent 100%);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  z-index: 2;
}
 
.cnt-mosaic-item figcaption span {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color3);
  text-transform: uppercase;
}
 
/* --- Tile "GIF" con crossfade CSS de dos imágenes --- */
.cnt-gif-crossfade {
  position: relative;
  width: 100%;
  height: 100%;
}
 
.cnt-gif-crossfade img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
  opacity: 0;
  animation: cntGifCrossfade 6s infinite;
}
 
.cnt-gif-crossfade img:nth-child(1) { animation-delay: 0s; }
.cnt-gif-crossfade img:nth-child(2) { animation-delay: 3s; }
 
@keyframes cntGifCrossfade {
  0%, 45% { opacity: 0.75; }
  50%, 95% { opacity: 0; }
  100% { opacity: 0.75; }
}
 
.cnt-gif-tag {
  top: 10px;
  right: 10px;
  left: auto;
}
 
.cnt-mosaic-item--video video { cursor: pointer; }
 
/* ==========================================================================
   OWL CAROUSEL — Formatos por plataforma
   ========================================================================== */
.cnt-formats {
  width: 100%;
  background-color: var(--color2);
  padding: 2rem 1.5rem 5rem;
  color: var(--color3);
}
 
.cnt-formats-carousel { padding-bottom: 2.5rem; }
 
.cnt-slide {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  align-items: center;
  background-color: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 2rem;
}
 
.cnt-slide-media {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background-color: #141414;
}
 
.cnt-slide-media--square { aspect-ratio: 4 / 5; }
.cnt-slide-media--vertical { aspect-ratio: 9 / 16; max-width: 260px; margin: 0 auto; }
 
.cnt-slide-media img,
.cnt-slide-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
  opacity: 0.8;
}
 
.cnt-slide-content h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color3);
  line-height: 1.15;
  margin: 0.6rem 0 1rem;
}
 
.cnt-slide-content p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.4rem;
  max-width: 420px;
}
 
/* --- Overrides de Owl Carousel: comparador de formatos --- */
.cnt-formats-carousel .owl-nav {
  position: absolute;
  top: -74px;
  right: 0;
  display: flex;
  gap: 8px;
}
 
.cnt-formats-carousel .owl-nav button.owl-prev,
.cnt-formats-carousel .owl-nav button.owl-next {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  background-color: transparent !important;
  color: var(--color3) !important;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
 
.cnt-formats-carousel .owl-nav button.owl-prev:hover,
.cnt-formats-carousel .owl-nav button.owl-next:hover {
  border-color: var(--color1) !important;
  color: var(--color1) !important;
}
 
.cnt-formats-carousel .owl-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
}
 
.cnt-formats-carousel .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: block;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
 
.cnt-formats-carousel .owl-dots .owl-dot.active span {
  background-color: var(--color1);
  transform: scale(1.3);
}
 
/* ==========================================================================
   REELS — Mockup de teléfono
   ========================================================================== */
.cnt-reels {
  width: 100%;
  background-color: var(--color2);
  padding: 2rem 1.5rem 6rem;
  color: var(--color3);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
 
.cnt-reels-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 4rem;
  align-items: center;
}
 
.cnt-phone {
  position: relative;
  width: 240px;
  height: 490px;
  margin: 0 auto;
  background-color: #050505;
  border: 6px solid #1a1a1a;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}
 
.cnt-phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 16px;
  background-color: #1a1a1a;
  border-radius: 10px;
  z-index: 3;
}
 
.cnt-phone-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
  opacity: 0.85;
}
 
.cnt-phone-ui {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 40%);
}
 
.cnt-phone-ui-icons {
  position: absolute;
  right: 14px;
  bottom: 70px;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  color: var(--color3);
  font-size: 1.3rem;
}
 
.cnt-phone-ui-caption {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color3);
}
 
.cnt-reels-content p { margin-bottom: 2rem; max-width: 480px; }
 
.cnt-reels-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  padding: 1.5rem 0;
  margin-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 480px;
}
 
/* ==========================================================================
   OWL CAROUSEL — Guiones y Planificación (storyboard)
   ========================================================================== */
.cnt-storyboard {
  width: 100%;
  background-color: var(--color2);
  padding: 2rem 0 6rem;
  color: var(--color3);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
 
.cnt-story-wrapper {
  position: relative;
  padding-top: 2.5rem;
}
 
.cnt-story-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
 
.cnt-story-line::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 16.6%; /* 1 de 6 frames visibles al inicio */
  background-color: var(--color1);
  transition: width 0.4s ease;
}
 
.cnt-frame {
  background-color: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 1.4rem;
  position: relative;
  height: 100%;
  margin: 4px;
}
 
.cnt-frame-num {
  position: absolute;
  top: -14px;
  left: 1.2rem;
  background-color: var(--color1);
  color: var(--color2);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
}
 
.cnt-frame i {
  font-size: 1.5rem;
  color: var(--color1);
  margin: 0.8rem 0 0.8rem;
  display: block;
}
 
.cnt-frame h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color3);
  margin-bottom: 0.5rem;
}
 
.cnt-frame p {
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}
 
/* --- Overrides de Owl Carousel: storyboard --- */
.cnt-storyboard-carousel { padding: 0 1.5rem; }
 
.cnt-storyboard-carousel .owl-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.8rem;
}
 
.cnt-storyboard-carousel .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: block;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
 
.cnt-storyboard-carousel .owl-dots .owl-dot.active span {
  background-color: var(--color1);
  transform: scale(1.3);
}
 
/* ==========================================================================
   CTA FINAL — Video de fondo
   ========================================================================== */
.cnt-cta {
  position: relative;
  width: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
 
.cnt-cta-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
  opacity: 0.4;
}
 
.cnt-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.9) 100%);
}
 
.cnt-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
 
.cnt-cta-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--color3);
  letter-spacing: -0.5px;
  margin: 1rem 0 2rem;
}
 
.cnt-cta-title .highlight { color: var(--color1); }
 
.cnt-cta-buttons { justify-content: center; }




 /* ==========================================================================
   PÁGINA INTERNA — ESTRATEGIA & PERFORMANCE

   ========================================================================== */

.only-mobile { display: none; }

/* --- Íconos flotantes de fondo, reutilizables en todas las secciones --- */
.epf-float-icon {
  position: absolute;
  font-size: 2.4rem;
  color: rgba(212, 255, 0, 0.12);
  pointer-events: none;
  z-index: 1;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.epf-hero {
  position: relative;
  width: 100%;
  background-color: var(--color2);
  padding: 3rem 1.5rem 5rem;
  overflow: hidden;
}

.epf-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.epf-hero-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
  color: var(--color3);
  letter-spacing: -0.5px;
  margin: 2rem 0 1.5rem;
}

.epf-hero-title .highlight { color: var(--color1); }
.epf-hero-title .dot { color: var(--color1); }

.epf-hero-description {
  font-family: var(--font1);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 2.2rem;
}

/* --- Panel de dashboard --- */
.epf-hero-visual {
  position: relative;
}

.epf-dash-card {
  position: relative;
  z-index: 2;
  background-color: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.4rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.epf-dash-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 1.2rem;
}

.epf-dash-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
}

.epf-dash-title {
  margin-left: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.epf-dash-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-bottom: 1.3rem;
}

.epf-kpi {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 10px 12px;
}

.epf-kpi .stats-num { font-size: 1.1rem; flex-wrap: wrap; }

.epf-dash-chart {
  width: 100%;
  height: 90px;
  display: block;
}

.epf-dash-chart-line {
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
}

.epf-hero-visual.is-visible .epf-dash-chart-line {
  animation: epfDrawLine 1.6s ease forwards 0.3s;
}

@keyframes epfDrawLine {
  to { stroke-dashoffset: 0; }
}

/* --- Posiciones de símbolos flotantes junto al dashboard --- */
.epf-symbol-target { top: -30px; right: -20px; width: 70px; z-index: 3; }
.epf-symbol-trend { bottom: -20px; left: -30px; width: 85px; z-index: 3; }

/* ==========================================================================
   VISIÓN — Loop circular
   ========================================================================== */
.epf-loop-section {
  position: relative;
  width: 100%;
  background-color: var(--color2);
  padding: 2rem 1.5rem 6rem;
  color: var(--color3);
  overflow: hidden;
}

.epf-loop {
  position: relative;
  width: 340px;
  height: 340px;
  margin: 3rem auto 0;
}

.epf-loop-ring {
  position: absolute;
  inset: 0;
  border: 2px dashed rgba(212, 255, 0, 0.3);
  border-radius: 50%;
  animation: epfSpin 40s linear infinite;
}

@keyframes epfSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.epf-loop-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 110px;
  text-align: center;
}

.epf-loop-node i {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color1);
}

.epf-loop-node span {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0.75);
}

.epf-loop-node--top { top: -10px; left: 50%; transform: translateX(-50%); }
.epf-loop-node--right { top: 50%; right: -35px; transform: translateY(-50%); }
.epf-loop-node--bottom { bottom: -10px; left: 50%; transform: translateX(-50%); }
.epf-loop-node--left { top: 50%; left: -35px; transform: translateY(-50%); }

.epf-loop-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(212, 255, 0, 0.08);
  border: 1px solid rgba(212, 255, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color1);
}

/* ==========================================================================
   SERVICIOS — Owl Carousel
   ========================================================================== */
.epf-services {
  width: 100%;
  background-color: var(--color2);
  padding: 1rem 1.5rem 6rem;
  color: var(--color3);
}

.epf-services-carousel { padding-bottom: 2.5rem; }

.epf-card {
  position: relative;
  background-color: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 1.6rem;
  height: 100%;
  min-height: 260px;
  margin: 6px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.epf-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 255, 0, 0.4);
}

.epf-card .card-number-stroke { font-size: 2.4rem; }

.epf-card-icon {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(212, 255, 0, 0.08);
  border: 1px solid rgba(212, 255, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color1);
  margin-bottom: 1rem;
}

.epf-symbol-mini {
  position: absolute;
  top: -14px;
  left: 430%;
  width: 46px;
  opacity: 0.6;
}

.epf-card .card-title { font-size: 1rem; }
.epf-card .card-description { font-size: 0.8rem; }

/* --- Overrides Owl Carousel: servicios --- */
.epf-services-carousel .owl-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
}

.epf-services-carousel .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: block;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.epf-services-carousel .owl-dots .owl-dot.active span {
  background-color: var(--color1);
  transform: scale(1.3);
}

.epf-services-carousel .owl-nav {
  position: absolute;
  top: -70px;
  right: 1.5rem;
  display: flex;
  gap: 8px;
}

.epf-services-carousel .owl-nav button.owl-prev,
.epf-services-carousel .owl-nav button.owl-next {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  background-color: transparent !important;
  color: var(--color3) !important;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.epf-services-carousel .owl-nav button.owl-prev:hover,
.epf-services-carousel .owl-nav button.owl-next:hover {
  border-color: var(--color1) !important;
  color: var(--color1) !important;
}

/* ==========================================================================
   PROPUESTA DE VALOR
   ========================================================================== */
.epf-value {
  width: 100%;
  background-color: var(--color2);
  padding: 2rem 1.5rem 6rem;
  color: var(--color3);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.epf-value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.epf-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}

.epf-compare-col {
  border-radius: 8px;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.epf-compare-col--off { background-color: rgba(255, 255, 255, 0.02); }
.epf-compare-col--on { background-color: rgba(212, 255, 0, 0.05); border-color: rgba(212, 255, 0, 0.25); }

.epf-compare-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.8rem;
}

.epf-compare-col--on .epf-compare-label { color: var(--color1); }

.epf-compare-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

.epf-compare-col li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.epf-compare-col--off i { color: rgba(255, 255, 255, 0.35); }
.epf-compare-col--on i { color: var(--color1); }

/* --- Barras animadas --- */
.epf-value-visual { position: relative; }

.epf-bars {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 220px;
  background-color: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 1.5rem 1.5rem 1rem;
}

.epf-bar {
  flex: 1;
  height: 0%;
  background-color: rgba(255, 255, 255, 0.12);
  border-radius: 4px 4px 0 0;
  position: relative;
  transition: height 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.epf-bars.is-animated .epf-bar { height: var(--bar-h); }

.epf-bar--highlight { background-color: var(--color1); }

.epf-bar span {
  position: absolute;
  bottom: -22px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.epf-bars-caption {
  display: block;
  margin-top: 1.8rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.epf-symbol-circle-b { top: -30px; left: -20px; width: 60px; z-index: 3; }

/* ==========================================================================
   CTA FINAL
   ========================================================================== */
.epf-cta {
  position: relative;
  width: 100%;
  background-color: var(--color2);
  padding: 5rem 1.5rem;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.epf-cta-scan {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 900px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(212, 255, 0, 0.08), transparent 25%);
  animation: epfScanRotate 8s linear infinite;
  z-index: 1;
}

@keyframes epfScanRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.epf-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.epf-cta-title {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--color3);
  letter-spacing: -0.5px;
  margin-bottom: 2rem;
}

.epf-cta-title .highlight { color: var(--color1); }
/* ==========================================================================
   scroll-animations.css
   Utilidad compartida de animaciones al hacer scroll.
   Se apoya en atributos data-* en el HTML, sin clases nuevas que choquen
   con el resto del theme. Pensado para reutilizarse en cualquier página
   (front-page y, si se desea más adelante, las páginas internas).
   ========================================================================== */

/* --- Revelado al hacer scroll: fade + translateY --- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: calc(var(--reveal-delay, 0) * 0.12s);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Respeta a quienes prefieren menos movimiento */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    transition: none;
    opacity: 1;
    transform: none;
  }

  [data-parallax] {
    transform: none !important;
  }
}







/* ==========================================================================
   PÁGINA INTERNA — PUBLICIDAD DIGITAL (v2)
   ========================================================================== */



.pub-float-icon {
  position: absolute;
  font-size: 2.2rem;
  color: rgba(212, 255, 0, 0.12);
  pointer-events: none;
  z-index: 1;
}

/* ==========================================================================
   HERO — Abanico de mini-mockups
   ========================================================================== */
.pub-hero {
  position: relative;
  width: 100%;
  background-color: var(--color2);
  padding: 3rem 1.5rem 6rem;
  overflow: hidden;
}

.pub-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.pub-hero-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
  color: var(--color3);
  letter-spacing: -0.5px;
  margin: 2rem 0 1.5rem;
}

.pub-hero-title .highlight { color: var(--color1); }
.pub-hero-title .dot { color: var(--color1); }

.pub-hero-description {
  font-family: var(--font1);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 2.2rem;
}

/* --- Abanico --- */
.pub-fan {
  position: relative;
  height: 420px;
  left: 25%;
    top: 20%;
}

@keyframes pubCardFloat {
  0%, 100% { transform: translateY(0) rotate(var(--fan-rot)); }
  50% { transform: translateY(-10px) rotate(var(--fan-rot)); }
}

.pub-fan-card {
  position: absolute;
  width: 190px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  animation: pubCardFloat 6s ease-in-out infinite;
  transition: transform 0.35s ease, z-index 0s;
}

.pub-fan-card:hover { transform: translateY(-6px) rotate(0deg) scale(1.03) !important; z-index: 10 !important; }

.pub-fan-card--fb {
  --fan-rot: -9deg;
  top: 10px; left: 0;
  transform: rotate(var(--fan-rot));
  z-index: 1;
  animation-delay: 0s;
}

.pub-fan-card--ig {
  --fan-rot: 4deg;
  top: 0; left: 130px;
  transform: rotate(var(--fan-rot));
  z-index: 2;
  animation-delay: 1.2s;
}

.pub-fan-card--google {
  --fan-rot: -4deg;
  top: 160px; left: 15px;
  width: 210px;
  transform: rotate(var(--fan-rot));
  z-index: 3;
  animation-delay: 0.6s;
}

.pub-fan-card--tiktok {
  --fan-rot: 8deg;
  top: 90px; left: 190px;
  width: 150px;
  transform: rotate(var(--fan-rot));
  z-index: 4;
  animation-delay: 1.8s;
}

/* --- Mini mockups (dentro del abanico) --- */
.pub-mini-mock {
  background-color: #fff;
  font-family: var(--font1);
  position: relative;
}

.pub-mini-mock img,
.pub-mini-mock video {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
}

.pub-mini-mock-head {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
}

.pub-mini-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #d4ff00;
  display: block;
}

.pub-mini-avatar-ring {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pub-mini-avatar-ring .pub-mini-avatar { width: 100%; height: 100%; border: 2px solid #fff; }

.pub-mini-label {
  font-size: 0.6rem;
  font-weight: 700;
  color: #65676b;
}

.pub-mini-foot {
  padding: 8px 10px;
  font-size: 0.65rem;
  font-weight: 700;
  color: #1877f2;
  display: flex;
  gap: 8px;
}

.pub-mini-mock--ig .pub-mini-foot { color: #262626; }

.pub-mini-mock--google {
  padding: 12px;
  min-height: 130px;
}

.pub-mini-search {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: #f1f3f4;
  border-radius: 16px;
  padding: 5px 10px;
  font-size: 0.58rem;
  color: #5f6368;
  margin-bottom: 10px;
}

.pub-mini-ad-tag {
  display: block;
  font-size: 0.6rem;
  font-weight: 800;
  color: #202124;
  margin-bottom: 2px;
}

.pub-mini-google-title {
  display: block;
  font-size: 0.72rem;
  color: #1a0dab;
  line-height: 1.3;
}

.pub-mini-google-url {
  display: block;
  font-size: 0.6rem;
  color: #006621;
  margin-top: 2px;
}

.pub-mini-mock--tiktok {
  position: relative;
  background-color: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pub-mini-mock--tiktok video { height: 210px; opacity: 0.9; }

.pub-mini-label--tiktok {
  position: absolute;
  top: 8px;
  left: 8px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2px 6px;
  border-radius: 3px;
}

.pub-mini-foot--tiktok {
  position: absolute;
  bottom: 8px;
  right: 8px;
  color: #fe2c55;
  font-size: 0.9rem;
}

/* ==========================================================================
   VISIÓN
   ========================================================================== */
.pub-vision {
  width: 100%;
  background-color: var(--color2);
  padding: 1rem 1.5rem 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pub-vision-inner { max-width: 820px; margin: 0 auto; text-align: center; }

.pub-vision-text {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
}

.pub-vision-text strong { color: var(--color3); font-weight: 700; }

/* ==========================================================================
   VITRINA — Mockups reales a tamaño completo
   ========================================================================== */
.pub-showcase {
  width: 100%;
  background-color: var(--color2);
  padding: 1rem 1.5rem 6rem;
  color: var(--color3);
}

.pub-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pub-mock {
  position: relative;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  font-family: var(--font1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  padding-bottom: 2.4rem; /* espacio para el tag de plataforma */
}

.pub-mock-platform-tag {
  position: absolute;
  bottom: 10px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.5);
}

.pub-mock-platform-tag--fb i { color: #1877f2; }
.pub-mock-platform-tag--ig i { color: #dd2a7b; }
.pub-mock-platform-tag--google i { color: #202124; background: none; }
.pub-mock-platform-tag--tiktok i { color: #fe2c55; }

/* --- Facebook --- */
.pub-mock-fb-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px 6px;
}

.pub-mock-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4ff00, #a8cc00);
  flex-shrink: 0;
}

.pub-mock-fb-meta { flex: 1; }

.pub-mock-fb-meta strong {
  display: block;
  font-size: 0.85rem;
  color: #050505;
}

.pub-mock-fb-meta span {
  font-size: 0.7rem;
  color: #65676b;
  display: flex;
  align-items: center;
  gap: 3px;
}

.pub-mock-fb-header > i { color: #65676b; }

.pub-mock-fb-caption {
  padding: 4px 14px 10px;
  font-size: 0.8rem;
  color: #050505;
  line-height: 1.4;
}

.pub-mock-fb-image { width: 100%; aspect-ratio: 4/3; }
.pub-mock-fb-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.pub-mock-fb-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f0f2f5;
  padding: 10px 14px;
}

.pub-mock-fb-cta span {
  font-size: 0.65rem;
  color: #65676b;
  font-weight: 600;
}

.pub-mock-fb-cta button {
  background-color: #e4e6eb;
  border: none;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #050505;
  cursor: default;
}

.pub-mock-fb-actions {
  display: flex;
  justify-content: space-around;
  padding: 8px 6px;
  border-top: 1px solid #e4e6eb;
}

.pub-mock-fb-actions span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 600;
  color: #65676b;
}

.pub-mock-fb-actions i { color: #65676b; font-size: 0.9rem; }

/* --- Instagram --- */
.pub-mock-ig-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
}

.pub-mock-ig-ring {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pub-mock-ig-ring .pub-mock-avatar { width: 100%; height: 100%; border: 2px solid #fff; }

.pub-mock-ig-meta { flex: 1; }
.pub-mock-ig-meta strong { display: block; font-size: 0.82rem; color: #262626; }
.pub-mock-ig-meta span { font-size: 0.65rem; color: #8e8e8e; }
.pub-mock-ig-header > i { color: #262626; }

.pub-mock-ig-image { width: 100%; aspect-ratio: 1/1; }
.pub-mock-ig-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.pub-mock-ig-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 4px;
  color: #262626;
}

.pub-mock-ig-actions-left { display: flex; gap: 12px; font-size: 1.15rem; }
.pub-mock-ig-actions > i { font-size: 1.15rem; }

.pub-mock-ig-likes { padding: 0 12px; font-size: 0.72rem; color: #262626; }

.pub-mock-ig-caption {
  padding: 4px 12px 10px;
  font-size: 0.75rem;
  color: #262626;
  line-height: 1.4;
}

.pub-mock-ig-cta {
  display: block;
  width: calc(100% - 24px);
  margin: 0 12px 12px;
  background-color: #efefef;
  border: none;
  border-radius: 6px;
  padding: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #262626;
  cursor: default;
}

/* --- Google --- */
.pub-mock-google {
  background-color: #fff;
  padding: 1.2rem;
  min-height: 260px;
}

.pub-mock-google-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #f1f3f4;
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 0.75rem;
  color: #5f6368;
  margin-bottom: 1.2rem;
}

.pub-mock-google-search i { color: #5f6368; }

.pub-mock-google-result {
  padding: 0.6rem 0;
  border-bottom: 1px solid #ebebeb;
}

.pub-mock-google-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: #202124;
}

.pub-mock-google-ad-label {
  font-weight: 800;
  color: #202124;
}

.pub-mock-google-result h4 {
  font-size: 0.85rem;
  font-weight: 400;
  color: #1a0dab;
  margin: 4px 0;
  line-height: 1.3;
}

.pub-mock-google-result p {
  font-size: 0.72rem;
  color: #4d5156;
  line-height: 1.4;
}

.pub-mock-google-result--organic { opacity: 0.45; border-bottom: none; }

/* --- TikTok --- */
.pub-mock-tiktok {
  position: relative;
  background-color: #000;
  aspect-ratio: 9/16;
  border: 1px solid #1a0f12;
}

.pub-mock-tiktok video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.pub-mock-tiktok-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 2;
}

.pub-mock-tiktok-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 14px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 45%);
  gap: 10px;
}

.pub-mock-tiktok-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #fff;
  min-width: 0;
}

.pub-mock-tiktok-info strong { font-size: 0.82rem; }

.pub-mock-tiktok-info span {
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.85);
}

.pub-mock-tiktok-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #fff;
  text-align: center;
  flex-shrink: 0;
}

.pub-mock-tiktok-actions div { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.pub-mock-tiktok-actions i { font-size: 1.3rem; }
.pub-mock-tiktok-actions i.ri-heart-fill { color: #fe2c55; }
.pub-mock-tiktok-actions span { font-size: 0.6rem; }

/* ==========================================================================
   OWL CAROUSEL — Cómo trabajamos cada plataforma
   ========================================================================== */
.pub-approach {
  position: relative;
  width: 100%;
  background-color: var(--color2);
  padding: 2rem 1.5rem 6rem;
  color: var(--color3);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.pub-approach-carousel { padding-bottom: 2.5rem; position: relative; z-index: 2; }

.pub-approach-card {
  background-color: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  margin: 6px;
}

.pub-approach-icon {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: rgba(212, 255, 0, 0.08);
  border: 1px solid rgba(212, 255, 0, 0.25);
  justify-content: center;
  font-size: 1.3rem;
  color: var(--color1);
  margin-bottom: 1.2rem;
}

.pub-approach-icon--meta i:first-child { margin-right: -6px; font-size: 1.05rem; }
.pub-approach-icon--meta i:last-child { font-size: 1.05rem; }

.pub-approach-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color3);
  line-height: 1.2;
  margin: 0.5rem 0 1.2rem;
}

.pub-approach-carousel .owl-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.8rem;
}

.pub-approach-carousel .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: block;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.pub-approach-carousel .owl-dots .owl-dot.active span {
  background-color: var(--color1);
  transform: scale(1.3);
}

.pub-approach-carousel .owl-nav {
  position: absolute;
  top: -70px;
  right: 1.5rem;
  display: flex;
  gap: 8px;
}

.pub-approach-carousel .owl-nav button.owl-prev,
.pub-approach-carousel .owl-nav button.owl-next {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  background-color: transparent !important;
  color: var(--color3) !important;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.pub-approach-carousel .owl-nav button.owl-prev:hover,
.pub-approach-carousel .owl-nav button.owl-next:hover {
  border-color: var(--color1) !important;
  color: var(--color1) !important;
}

/* ==========================================================================
   EMBUDO — Propuesta de valor
   ========================================================================== */
.pub-funnel {
  position: relative;
  width: 100%;
  background-color: var(--color2);
  padding: 2rem 1.5rem 6rem;
  color: var(--color3);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.pub-funnel-track {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 3rem auto 0;
  flex-wrap: wrap;
}

.pub-funnel-stage {
  flex: 1;
  min-width: 220px;
  max-width: 260px;
  background-color: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 1.6rem;
  text-align: center;
  position: relative;
}

.pub-funnel-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background-color: rgba(212, 255, 0, 0.08);
  border: 1px solid rgba(212, 255, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--color1);
}

.pub-funnel-step {
  position: absolute;
  top: 12px;
  right: 14px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.3);
}

.pub-funnel-stage h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color3);
  margin-bottom: 0.6rem;
}

.pub-funnel-stage p {
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.pub-funnel-platforms {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 1.1rem;
  color: var(--color1);
}

.pub-funnel-arrow {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   CTA FINAL
   ========================================================================== */
.pub-cta {
  position: relative;
  width: 100%;
  background-color: var(--color2);
  padding: 5rem 1.5rem;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pub-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.pub-cta-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--color3);
  letter-spacing: -0.5px;
  margin: 1rem 0 2rem;
}

.pub-cta-title .highlight { color: var(--color1); }

/* ==========================================================================
   BANNER PRINCIPAL — foto a pantalla completa
   ========================================================================== */
.team-hero {
  position: relative;
  width: 100%;
  height: 88vh;
  min-height: 560px;
  overflow: hidden;
  background-color: var(--color2);
}
 
.team-hero-media {
  position: absolute;
  inset: -40px 0 0 0; /* margen extra para el parallax sin dejar huecos */
  z-index: 1;
}
 
.team-hero-media img {
  width: 100%;
  height: calc(100% + 40px);
  object-fit: cover;
  filter: grayscale(60%) contrast(1.05) brightness(0.75);
}
 
.team-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.85) 100%);
}
 
.team-hero-inner {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem 4.5rem;
}
 
.team-hero-breadcrumb {
  margin-bottom: auto;
}
 
.team-hero-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.02;
  text-transform: uppercase;
  color: var(--color3);
  letter-spacing: -1px;
  margin: 0.8rem 0 1rem;
}
 
.team-hero-title .highlight { color: var(--color1); }
.team-hero-title .dot { color: var(--color1); }
 
.team-hero-subtitle {
  font-family: var(--font1);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 460px;
}
 
.team-hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: 1.5rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color3);
  font-size: 1.2rem;
  animation: teamScrollBounce 2s ease-in-out infinite;
  transition: border-color 0.3s ease, color 0.3s ease;
}
 
.team-hero-scroll:hover {
  border-color: var(--color1);
  color: var(--color1);
}
 
@keyframes teamScrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
 
/* ==========================================================================
   GALERÍA — Owl Carousel
   ========================================================================== */
.team-gallery {
  width: 100%;
  background-color: var(--color2);
  padding: 3rem 0;
}
 
.team-gallery-carousel .owl-stage-outer { border-radius: 0; }
 
.team-gallery-slide {
  position: relative;
  height: 60vh;
  min-height: 380px;
  max-height: 560px;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 8px;
}
 
.team-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) contrast(1.05);
}
 
.team-gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.2rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  color: var(--color3);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
 
.team-gallery-carousel .owl-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
}
 
.team-gallery-carousel .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: block;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
 
.team-gallery-carousel .owl-dots .owl-dot.active span {
  background-color: var(--color1);
  transform: scale(1.3);
}
 
/* ==========================================================================
   VALORES
   ========================================================================== */
.team-values {
  width: 100%;
  background-color: var(--color2);
  padding: 1rem 1.5rem 5rem;
  color: var(--color3);
}
 
.team-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
 
.team-value-card {
  background-color: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 1.8rem 1.5rem;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
 
.team-value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 255, 0, 0.35);
}
 
.team-value-card i {
  font-size: 1.8rem;
  color: var(--color1);
  margin-bottom: 0.9rem;
  display: block;
}
 
.team-value-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color3);
  margin-bottom: 0.5rem;
}
 
.team-value-card p {
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}
 
/* ==========================================================================
   FRANJA DE ESTADÍSTICAS
   ========================================================================== */
.team-stats {
  width: 100%;
  background-color: var(--color2);
  padding: 0 1.5rem 5rem;
  color: var(--color3);
}
 
.team-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
 
.team-stat { display: flex; flex-direction: column; }
 
.team-stat .stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color1);
}
 
.team-stat .stat-label {
  margin-top: 0.4rem;
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
 
/* ==========================================================================
   CTA FINAL — corta
   ========================================================================== */
.team-cta {
  width: 100%;
  background-color: var(--color2);
  padding: 3rem 1.5rem 6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
 
.team-cta-inner { text-align: center; }
 
.team-cta-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color3);
  letter-spacing: -0.5px;
  margin-bottom: 1.8rem;
}
 
.team-cta-title .highlight { color: var(--color1); }
 
.team-cta-inner .btn-primary { margin: 0 auto; }
 


































/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .team-hero-title { font-size: 3rem; }
  .team-values-grid { grid-template-columns: repeat(2, 1fr); }
}
 
@media (max-width: 900px) {
  .team-hero { height: 80vh; }
  .team-gallery-slide { height: 50vh; }
  .team-stats-grid { grid-template-columns: 1fr; gap: 2rem; }
}
 
@media (max-width: 650px) {
  .only-mobile { display: inline; }
  .team-hero-title { font-size: 2.2rem; }
  .team-hero-subtitle { font-size: 0.9rem; }
  .team-values-grid { grid-template-columns: 1fr; }
  .team-cta-title { font-size: 2rem; }
  .team-hero-scroll { display: none; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1200px) {
  .pub-showcase-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .pub-hero-title { font-size: 2.4rem; }
}

@media (max-width: 900px) {
  .pub-hero-grid { grid-template-columns: 1fr; }
  .pub-fan { max-width: 380px; margin: 0 auto; height: 400px; }
  .pub-approach-carousel .owl-nav { display: none; }
}

@media (max-width: 650px) {
  .only-mobile { display: inline; }
  .pub-hero-title { font-size: 2rem; }
  .pub-cta-title { font-size: 1.6rem; }
  .pub-showcase-grid { grid-template-columns: 1fr; }
  .pub-funnel-track { flex-direction: column; }
  .pub-funnel-arrow { transform: rotate(90deg); }
  .pub-float-icon { display: none; }
  .pub-fan { transform: scale(0.85); height: 360px; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .epf-hero-title { font-size: 2.4rem; }
  .epf-value-grid { grid-template-columns: 1fr; gap: 3rem; }
  .epf-loop { width: 300px; height: 300px; }
  .epf-float-icon { font-size: 1.8rem; }
}

@media (max-width: 900px) {
  .epf-hero-grid { grid-template-columns: 1fr; }
  .epf-hero-visual { max-width: 460px; margin: 0 auto; }
  .epf-dash-kpis { grid-template-columns: 1fr 1fr 1fr; gap: 0.5rem; }
  .epf-loop { width: 260px; height: 260px; }
  .epf-loop-node { width: 90px; }
  .epf-loop-node i { width: 46px; height: 46px; font-size: 1.15rem; }
  .epf-loop-node span { font-size: 0.6rem; }
  .epf-loop-node--right { right: -25px; }
  .epf-loop-node--left { left: -25px; }
  .epf-services-carousel .owl-nav { display: none; }
}

@media (max-width: 650px) {
  .only-mobile { display: inline; }
  .epf-hero-title { font-size: 2rem; }
  .epf-cta-title { font-size: 1.7rem; }
  .epf-compare { grid-template-columns: 1fr; }
  .epf-dash-kpis { grid-template-columns: 1fr; }
  .epf-loop { width: 220px; height: 220px; }
  .epf-loop-node { width: 76px; }
  .epf-loop-node i { width: 40px; height: 40px; font-size: 1rem; }
  .epf-loop-node span { font-size: 0.55rem; }
  .epf-float-icon { display: none; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .cnt-hero-title { font-size: 2.7rem; }
  .cnt-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .cnt-mosaic-item--big { grid-column: span 2; grid-row: span 1; }
  .cnt-reels-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .cnt-reels-content p { margin-left: auto; margin-right: auto; }
  .cnt-reels-stats { margin: 0 auto 2rem; }
}
 
@media (max-width: 900px) {
  .cnt-hero-grid { grid-template-columns: 1fr; }
  .cnt-hero-bento { height: 320px; }
  .cnt-slide { grid-template-columns: 1fr; padding: 1.5rem; }
  .cnt-slide-media--square { max-width: 320px; margin: 0 auto; }
  .cnt-formats-carousel .owl-nav { display: none; }
}
 
@media (max-width: 650px) {
  .only-mobile { display: inline; }
  .cnt-hero-title { font-size: 2.1rem; }
  .cnt-cta-title { font-size: 1.9rem; }
  .cnt-mosaic { grid-template-columns: 1fr 1fr; }
  .cnt-mosaic-item--big { grid-column: span 2; }
  .cnt-reels-stats { grid-template-columns: 1fr; }
  .cnt-phone { width: 200px; height: 410px; }
}
/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .footer-cta-card {
    padding: 2.5rem;
  }

  .cta-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .brand-col {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .cta-title {
    font-size: 2.1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .brand-col {
    grid-column: span 1;
  }

  .whatsapp-btn {
    position: static;
    margin-top: 1.5rem;
  }
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .cases-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cases-title {
    font-size: 1.8rem;
  }
}
/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .creativity-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .creativity-title {
    font-size: 3rem;
  }

  .creativity-visual {
    justify-content: center;
  }

  .purple-brush {
    left: 5%;
  }

  .arrow-svg {
    left: -20px;
  }
}

@media (max-width: 600px) {
  .creativity-title {
    font-size: 2.4rem;
  }

  .stats-counter-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .glitch-image-container {
    height: 260px;
  }

  .purple-brush {
    width: 220px;
    height: 55px;
    top: 5%;
  }
}
@media (max-width: 650px) {
  .pillars-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .pillars-title {
    font-size: 1.8rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }
}
/* Responsive Ajustado (Móviles y Tablets) */
@media (max-width: 1080px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 2rem;
    gap: 1rem;
    display: none;
    border-bottom: 2px solid var(--color1);
  }

  #menu-check:checked ~ .nav-menu {
    display: flex;
  }

  .nav-link {
    font-size: 0.85rem;
    font-weight: 600;
  }

  .btn-contact {
    margin-left: 0;
    margin-top: 0.5rem;
    width: 100%;
    justify-content: center;
  }
}
/* Adaptabilidad Responsive */
@media (max-width: 1100px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-description {
    margin: 0 auto 2rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .social-sidebar {
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
    margin-top: 3rem;
  }

  .hero-title {
    font-size: 3.5rem;
  }
}
/* --- RESPONSIVE --- */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .brands-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .about-heading {
    font-size: 1.8rem;
  }
}

@media (max-width: 650px) {
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
@media (max-width: 600px) {
  .hero-title {
    font-size: 2.6rem;
  }

  .card-stats {
    left: 10px;
    bottom: 10px;
  }

  .circle-overlay {
    display: none;
  }
}