* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0B1E3D;
  --secondary: #0a1628;
  --accent: #F5B715;
  --gold: #F5B715;
  --gold-light: #f7c948;
  --gold-dark: #d97706;
  --text: #f5f5f5;
  --text-muted: rgba(255, 255, 255, 0.55);
  --text-secondary: #d1d5db;
  --text-dark: #0B1E3D;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.3);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--primary);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==================== LIQUID GLASS ==================== */
.liquid-glass {
  background: rgba(11, 30, 61, 0.4);
  background-blend-mode: luminosity;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.liquid-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 20%,
    rgba(255,255,255,0) 40%, rgba(255,255,255,0) 60%,
    rgba(255,255,255,0.1) 80%, rgba(255,255,255,0.3) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ==================== SMOOTH REVEAL ==================== */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ==================== MAIN ==================== */
.main-content {
  margin-left: 0;
  min-height: 100vh;
  position: relative;
}

/* ==================== PAGE BANNER ==================== */
.page-banner {
  position: relative;
  height: 28vh;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(11, 30, 61, 0.55), rgba(10, 22, 40, 0.88)),
    url('/images/banner.jpeg') center / cover no-repeat;
  overflow: hidden;
  padding-left: 2rem;
}

.page-banner::before {
  display: none;
}

.page-banner::after {
  display: none;
}

.page-banner-grid {
  display: none;
}

.page-banner-overlay {
  display: none;
}

.page-banner-content {
  position: relative;
  z-index: 1;
}

.banner-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
}

.banner-logo {
  height: 160px;
  width: auto;
}

.banner-brand-text {
  text-align: left;
}

.banner-brand-text h1 {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.25rem;
  letter-spacing: -1px;
}

.banner-brand-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 300;
}

.page-banner-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 300;
}

.page-banner-breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.page-banner-breadcrumb a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

.page-banner-breadcrumb a:hover {
  color: var(--gold-light);
}

/* ==================== PAGE BODY ==================== */
.page-body {
  padding: 5rem 4rem;
  background: var(--primary);
}

.page-body-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-body-content .lead {
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.page-body-content p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

.page-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.page-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all var(--transition);
}

.page-feature-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(245, 183, 21, 0.15);
  transform: translateX(5px);
}

.page-feature-item .feature-icon {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.page-feature-item span {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.25rem;
  border-radius: 0;
  font-weight: 500;
  font-size: 0.8rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: inherit;
  background: transparent;
}

.btn-primary {
  color: #0B1E3D;
  background: #F5B715;
  border-color: #F5B715;
}

.btn-primary:hover {
  background: #d97706;
  border-color: #d97706;
}

.btn-ghost {
  color: #fff;
  border: 1px solid #F5B715;
  background: #F5B715;
}

.btn-ghost:hover {
  background: #d97706;
  border-color: #d97706;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  padding: 5rem 4rem;
  background: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(245, 183, 21, 0.06), transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(245, 183, 21, 0.03), transparent 60%);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.cta-content p {
  color: #555;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.cta-badge {
  display: inline-block;
  padding: 0.3rem 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid rgba(245, 183, 21, 0.3);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  background: var(--gold);
  color: #0B1E3D;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  font-family: inherit;
  cursor: pointer;
}

.btn-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.btn-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn-cta:hover svg:last-child {
  transform: translateX(4px);
}

/* ==================== FOOTER ==================== */
.footer {
  text-align: center;
  padding: 3rem 4rem;
  background: #fff;
  color: #888;
  font-size: 0.85rem;
  border-top: 1px solid #eee;
}

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

.footer-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0.15rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: #999;
  text-decoration: none;
  font-size: 0.8rem;
  transition: color var(--transition);
}

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

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-email {
  font-size: 0.8rem;
  color: #888;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-email:hover {
  color: #0B1E3D;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 0.9rem;
}

.social-link:hover {
  background: var(--gold);
  color: #0B1E3D;
  transform: translateY(-2px);
}

/* ==================== HOME BUTTON ==================== */
.home-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 9999;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0B1E3D;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.home-btn:hover {
  background: #f5f5f5;
  transform: scale(1.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.home-btn svg {
  width: 20px;
  height: 20px;
}

/* ==================== ANIMATIONS ==================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.7s ease forwards;
}

.slide-up {
  opacity: 0;
  transform: translateY(40px);
  animation: slideUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================== PARTICLES ==================== */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 15s infinite linear;
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
    transform: translateY(-10vh) scale(1);
  }
}

/* ==================== WHATSAPP BUTTON ==================== */
.whatsapp-btn {
  position: fixed;
  bottom: auto;
  top: 75vh;
  right: 24px;
  width: 64px;
  height: 64px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 9999;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: whatsappPulse 2s infinite;
  text-decoration: none;
  font-size: 1.8rem;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
  animation: none;
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 28px rgba(37, 211, 102, 0.7); }
  100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
}

/* ==================== SECTION HEADER ==================== */
.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-header p {
  font-size: 1rem;
  color: #666;
  max-width: 600px;
}

/* ==========================================================================
   HOME PAGE — IDEA PUBLICITY (merged with bsweb structure)
   ========================================================================== */

body.home {
  background: #fff;
  color: #333;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #F5B715;
  margin-bottom: 0.75rem;
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 60px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header-logo img {
  height: 34px;
  width: auto;
  display: block;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.header-nav a {
  text-decoration: none;
  color: #888;
  font-weight: 500;
  font-size: 0.85rem;
  transition: color 0.25s;
  letter-spacing: 0.3px;
  position: relative;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #F5B715;
  transition: width 0.3s ease;
}

.header-nav a:hover,
.header-nav a.active {
  color: #0B1E3D;
}

.header-nav a:hover::after,
.header-nav a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #0B1E3D;
  cursor: pointer;
  padding: 0.25rem;
}

/* ---------- HERO ---------- */
.hero-home {
  position: relative;
  background:
    linear-gradient(180deg, rgba(11, 30, 61, 0.4), rgba(10, 22, 40, 0.65)),
    url('/images/banner.jpeg') center / cover no-repeat;
  min-height: 65vh;
  display: flex;
  align-items: center;
  margin-top: 60px;
  overflow: hidden;
}

.hero-home::before {
  display: none;
}

.hero-deco-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-deco-1 {
  width: 520px;
  height: 520px;
  top: -200px;
  right: -120px;
  background: radial-gradient(circle, rgba(245, 183, 21, 0.07) 0%, transparent 70%);
}

.hero-deco-2 {
  width: 340px;
  height: 340px;
  bottom: -100px;
  left: -80px;
  background: radial-gradient(circle, rgba(245, 183, 21, 0.05) 0%, transparent 70%);
}

.hero-deco-dots {
  position: absolute;
  top: 18%;
  left: 6%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  pointer-events: none;
  opacity: 0.08;
  z-index: 1;
}

.hero-deco-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F5B715;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 5rem;
  position: relative;
  z-index: 2;
  padding-left: 1.5rem;
}

.hero-home .container {
  margin-left: 0;
  padding-left: 0;
}

.hero-text {
  flex: 1;
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.hero-brand-logo {
  height: 260px;
  width: auto;
  transform: translateY(-8px);
}

.hero-brand-text {
  text-align: left;
}

.hero-brand-text h1 {
  font-size: 4.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 2px;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.hero-slogan {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 480px;
  line-height: 1.6;
}

.hero-tagline {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #F5B715;
  margin-bottom: 1.25rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(245, 183, 21, 0.25);
  border-radius: 100px;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 1.25rem;
  letter-spacing: -1px;
}

.hero-text p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-left: 3rem;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.75rem 1.75rem;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  font-family: inherit;
}

.btn-hero-primary {
  background: #F5B715;
  color: #0B1E3D;
  border: 1.5px solid #F5B715;
}

.btn-hero-primary:hover {
  background: transparent;
  color: #F5B715;
  transform: translateY(-2px);
}

.btn-hero-outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-outline:hover {
  border-color: #F5B715;
  color: #F5B715;
  transform: translateY(-2px);
}

.btn-hero i {
  font-size: 0.8rem;
  transition: transform 0.25s ease;
}

.btn-hero:hover i {
  transform: translateX(3px);
}

/* ---------- SOBRE NOSOTROS ---------- */
.about-home {
  padding: 7rem 0;
  background: #fff;
}

.about-text-wrap {
  max-width: 720px;
  margin: 0 auto 5rem;
  text-align: center;
}

.about-text-wrap p {
  color: #666;
  font-size: 1.05rem;
  line-height: 1.9;
}

.about-text-wrap strong {
  color: #0B1E3D;
  font-weight: 700;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 4rem;
}

.stat-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: #fff;
  border-radius: 20px;
  box-shadow:
    0 1px 3px rgba(11, 30, 61, 0.04),
    0 8px 30px rgba(11, 30, 61, 0.06);
  transition: all 0.4s ease;
  min-width: 180px;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 1px 3px rgba(11, 30, 61, 0.04),
    0 12px 40px rgba(11, 30, 61, 0.1);
}

.stat-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #0B1E3D;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  color: #F5B715;
  box-shadow: 0 4px 14px rgba(11, 30, 61, 0.15);
  transition: transform 0.4s ease;
}

.stat-card:hover .stat-icon {
  transform: scale(1.1);
}

.stat-number {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  color: #0B1E3D;
  line-height: 1.2;
  letter-spacing: -1px;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: #999;
  margin-top: 0.35rem;
  font-weight: 500;
}

/* ---------- home services carousel ---------- */
.home-pilars {
  padding: 4rem 4rem 6rem;
  background: #f5f5f0;
}

.services-carousel {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 0;
  position: relative;
  height: 460px;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  color: var(--primary);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.carousel-arrow:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(11, 30, 61, 0.25);
  transform: translateY(-50%) scale(1.08);
}

.carousel-arrow--left {
  left: 0;
}

.carousel-arrow--right {
  right: 0;
}

.service-card {
  position: absolute;
  width: 400px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #eee;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  user-select: none;
  text-decoration: none;
  color: inherit;
  top: 50%;
  transform: translateY(-50%);
}

.service-card-icon {
  width: 220px;
  height: 220px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--primary);
  background: #f0f2f5;
  border-radius: 28px;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.04);
}

.service-card.active .service-card-icon {
  background: linear-gradient(135deg, #0B1E3D, #1a3a6b);
  color: #fff;
  box-shadow: 0 8px 24px rgba(11, 30, 61, 0.2), inset 0 1px 0 rgba(255,255,255,0.1);
}

.service-card.active .service-card-icon:hover {
  transform: scale(1.15);
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.4;
}

.service-card.active {
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(1.05);
  z-index: 3;
  box-shadow: 0 20px 60px rgba(11, 30, 61, 0.25), 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-card.side-left-2 {
  left: 0%;
  transform: translateY(-50%) translateX(0) scale(0.7);
  z-index: 1;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  opacity: 0.6;
  filter: brightness(0.9);
}

.service-card.side-left {
  left: 14%;
  transform: translateY(-50%) translateX(0) scale(0.85);
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  opacity: 0.85;
  filter: brightness(0.95);
}

.service-card.side-right {
  left: auto;
  right: 14%;
  transform: translateY(-50%) translateX(0) scale(0.85);
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  opacity: 0.85;
  filter: brightness(0.95);
}

.service-card.side-right-2 {
  left: auto;
  right: 0%;
  transform: translateY(-50%) translateX(0) scale(0.7);
  z-index: 1;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  opacity: 0.6;
  filter: brightness(0.9);
}

.service-card.side-left-2:hover,
.service-card.side-left:hover,
.service-card.side-right:hover,
.service-card.side-right-2:hover {
  opacity: 1;
  filter: brightness(1);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}

/* ---------- PORTFOLIO SHOWCASE ---------- */
.portfolio-showcase {
  padding: 4rem 0 2rem;
  background: #f8f8f6;
}

.showcase-carousel {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  height: 220px;
}

.showcase-card {
  position: absolute;
  width: 280px;
  height: 200px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eee;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.showcase-card.active {
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(1.05);
  z-index: 3;
  box-shadow: 0 20px 60px rgba(11, 30, 61, 0.2), 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: #F5B715;
}

.showcase-card.side-left {
  left: 5%;
  transform: translateY(-50%) scale(0.85);
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  opacity: 0.8;
}

.showcase-card.side-right {
  left: auto;
  right: 5%;
  transform: translateY(-50%) scale(0.85);
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  opacity: 0.8;
}

.showcase-card.side-left-2 {
  left: -5%;
  transform: translateY(-50%) scale(0.7);
  z-index: 1;
  opacity: 0.5;
}

.showcase-card.side-right-2 {
  left: auto;
  right: -5%;
  transform: translateY(-50%) scale(0.7);
  z-index: 1;
  opacity: 0.5;
}

.showcase-card.hidden {
  opacity: 0;
  pointer-events: none;
}

.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.showcase-card:hover .showcase-img {
  transform: scale(1.08);
}

.showcase-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(11, 30, 61, 0.85));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 2rem 1rem 0.75rem;
  text-align: center;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .showcase-carousel {
    height: 200px;
  }
  .showcase-card {
    width: 200px;
    height: 150px;
  }
  .showcase-card.side-left { left: 2%; }
  .showcase-card.side-right { right: 2%; }
}

@media (max-width: 480px) {
  .showcase-card {
    width: 150px;
    height: 120px;
  }
  .showcase-card.side-left { left: 0; }
  .showcase-card.side-right { right: 0; }
  .showcase-card.side-left-2 { left: -15%; }
  .showcase-card.side-right-2 { right: -15%; }
}

/* ---------- PORTFOLIO ---------- */
.portfolio-section {
  padding: 4rem 0;
  background: #f8f8f6;
}

.portfolio-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.mosaic-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  cursor: pointer;
  aspect-ratio: 1;
  position: relative;
}

.mosaic-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
}

.mosaic-item .mosaic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.mosaic-item:hover .mosaic-img {
  transform: scale(1.08);
}

.mosaic-item .mosaic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(11, 30, 61, 0.7));
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.mosaic-item:hover .mosaic-overlay {
  opacity: 1;
}

.mosaic-overlay span {
  font-size: 0.75rem;
  font-weight: 700;
  color: #F5B715;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.mosaic-item:nth-child(odd) {
  animation: floatUp 4s ease-in-out infinite;
}

.mosaic-item:nth-child(even) {
  animation: floatUp 4s ease-in-out infinite 1s;
}

.mosaic-item:nth-child(3n) {
  animation: floatUp 4s ease-in-out infinite 2s;
}

/* ---------- PORTFOLIO LIGHTBOX ---------- */
.portfolio-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.portfolio-lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.lightbox-close:hover {
  background: var(--gold);
  color: var(--primary);
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  overflow-y: auto;
  padding: 2rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}

.lightbox-content::-webkit-scrollbar {
  width: 6px;
}

.lightbox-content::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

.lightbox-content::-webkit-scrollbar-track {
  background: transparent;
}

.lightbox-item {
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
}

.lightbox-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.lightbox-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  transition: transform 0.4s ease;
  cursor: pointer;
}

.lightbox-item img:hover {
  transform: scale(1.05);
}

.lightbox-item .lightbox-caption {
  padding: 0.6rem 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .portfolio-mosaic {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .lightbox-content {
    grid-template-columns: repeat(2, 1fr);
    padding: 1rem;
    gap: 0.75rem;
  }
  .lightbox-item img {
    height: 160px;
  }
}

@media (max-width: 480px) {
  .portfolio-mosaic {
    grid-template-columns: 1fr;
  }
  .lightbox-content {
    grid-template-columns: 1fr;
    padding: 0.75rem;
  }
  .lightbox-item img {
    height: 200px;
  }
}

/* ---------- HOME BLUE BAND ---------- */
.home-band {
  background: #0B1E3D;
  padding: 2rem 0 1rem;
  text-align: center;
}

.home-band-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.band-info {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.band-info span {
  color: #fff;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.band-info span i {
  color: #fff;
  font-size: 0.9rem;
}

.band-social {
  display: flex;
  gap: 0.6rem;
}

.band-social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.band-social-link:hover {
  background: #fff;
  color: var(--primary);
}

.band-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.band-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.25s;
}

.band-links a:hover {
  color: #F5B715;
}

.band-bottom {
  padding-top: 1rem;
  text-align: center;
}

.band-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}

/* ---------- CTA FINAL ---------- */
.cta-home {
  position: relative;
  background: #0B1E3D;
  padding: 6rem 0;
  overflow: hidden;
}

.cta-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 500px 300px at 30% 50%, rgba(245, 183, 21, 0.05), transparent),
    radial-gradient(ellipse 400px 400px at 80% 80%, rgba(245, 183, 21, 0.03), transparent);
  pointer-events: none;
  z-index: 1;
}

.cta-deco-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cta-deco-1 {
  width: 450px;
  height: 450px;
  top: -220px;
  right: -120px;
  background: radial-gradient(circle, rgba(245, 183, 21, 0.06) 0%, transparent 70%);
}

.cta-deco-2 {
  width: 280px;
  height: 280px;
  bottom: -140px;
  left: -60px;
  background: radial-gradient(circle, rgba(245, 183, 21, 0.04) 0%, transparent 70%);
}

.cta-deco-dots {
  position: absolute;
  bottom: 18%;
  right: 6%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  pointer-events: none;
  opacity: 0.06;
  z-index: 1;
}

.cta-deco-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F5B715;
}

.cta-home-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-home-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2.5rem;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

.cta-contact-info {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.cta-contact-info span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-contact-info span i {
  color: #F5B715;
  font-size: 1rem;
}

/* ==========================================================================
   ABOUT PAGE (bsweb-style)
   ========================================================================== */

.about-hero {
  position: relative;
  height: 50vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  overflow: hidden;
  background: var(--secondary);
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(245, 183, 21, 0.1), transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(245, 183, 21, 0.05), transparent 50%);
  z-index: 1;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 30, 61, 0.3), rgba(10, 22, 40, 0.9));
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 4rem;
}

.about-hero-badge {
  display: inline-block;
  padding: 0.3rem 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(245, 183, 21, 0.3);
}

.about-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: #fff;
}

.about-hero-content p {
  font-size: 1.2rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* ---------- section badge ---------- */
.section-badge {
  display: inline-block;
  padding: 0.3rem 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(245, 183, 21, 0.3);
}

/* ---------- about founder ---------- */
.about-founder {
  padding: 4rem 4rem;
  background: var(--primary);
}

.founder-layout {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.founder-photo {
  flex: 0 0 300px;
}

.founder-photo img {
  width: 300px;
  height: 380px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.founder-text {
  flex: 1;
}

.founder-text .section-badge {
  display: inline-block;
  padding: 0.3rem 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(245, 183, 21, 0.3);
}

.founder-text h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.founder-text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.founder-text strong {
  color: var(--gold);
}

/* ---------- about mission ---------- */
.about-mission {
  padding: 3rem 4rem;
  background: #f8f6f1;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.mission-card {
  background: #fff;
  padding: 3rem 2.5rem;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  text-align: center;
}

.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.mission-icon {
  width: 64px;
  height: 64px;
  background: rgba(245, 183, 21, 0.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.5rem;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.mission-card:hover .mission-icon {
  background: var(--gold);
  color: var(--primary);
}

.mission-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.mission-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
}

/* ---------- 5 pilars ---------- */
.about-pilars {
  padding: 4rem 4rem;
  background: var(--primary);
}

.about-pilars .section-header h2 {
  color: #fff;
}

.text-gold {
  color: var(--gold);
}

.pilars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pilar-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
}

.pilar-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(245, 183, 21, 0.2);
  transform: translateY(-4px);
}

.pilar-card:nth-child(4),
.pilar-card:nth-child(5) {
  grid-column: span 1;
}

.pilar-card:nth-child(4) {
  grid-column: 1 / 3;
}

.pilar-card:nth-child(5) {
  grid-column: 3 / 4;
}

.pilar-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(245, 183, 21, 0.15);
  line-height: 1;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}

.pilar-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.pilar-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

.pilar-results {
  list-style: none;
  margin-top: 1rem;
  padding: 0;
}

.pilar-results li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pilar-results li i {
  color: var(--gold);
  font-size: 0.75rem;
}

/* ---------- method IDEA ---------- */
.about-method {
  padding: 4rem 4rem;
  background: #fff;
}

.method-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.method-card {
  background: #f8f6f1;
  padding: 2rem;
  text-align: center;
  flex: 1;
  min-width: 160px;
  max-width: 200px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.method-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.method-letter {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: var(--gold);
  color: var(--primary);
  font-size: 1.6rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
}

.method-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.method-card p {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.6;
}

.method-arrow {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
}

/* ---------- values ---------- */
.about-values {
  padding: 4rem 4rem;
  background: #f8f6f1;
  text-align: center;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  max-width: 700px;
  margin: 0 auto;
}

.value-tag {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.04);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  transition: all 0.3s ease;
}

.value-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ---------- manifest ---------- */
.about-manifest {
  padding: 4rem 4rem;
  background: var(--primary);
  text-align: center;
}

.manifest-content {
  max-width: 750px;
  margin: 0 auto;
}

.manifest-content blockquote {
  border: none;
  margin: 0;
  padding: 0;
}

.manifest-content blockquote p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.manifest-content blockquote p strong {
  color: var(--gold);
}

.manifest-footer {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ==========================================================================
   PLANS SECTION (Páginas Web + Publicidad)
   ========================================================================== */

.plans-section {
  padding: 3rem 4rem 6rem;
  background: #fff;
}

.plans-section-alt {
  background: var(--primary);
}

.plans-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.plans-section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #F5B715;
  margin-bottom: 0.75rem;
  padding: 0.35rem 1rem;
  border: 1px solid rgba(245, 183, 21, 0.2);
  border-radius: 100px;
}

.plans-section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
  margin-bottom: 0.75rem;
}

.plans-section-header p {
  font-size: 1rem;
  color: #666;
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.plans-section-header p em {
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

.service-highlights {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.highlight-item i {
  width: 36px;
  height: 36px;
  background: rgba(245, 183, 21, 0.1);
  color: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.highlight-item:hover i {
  background: var(--gold);
  color: var(--primary);
  transform: scale(1.1);
}

.highlight-item span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.plan-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  position: relative;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.plan-featured {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(245, 183, 21, 0.2);
  z-index: 2;
}

.plan-featured:hover {
  transform: scale(1.05) translateY(-6px);
}

.plan-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #F5B715;
  color: #0B1E3D;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 3;
}

.plan-badge-pub {
  background: #fff;
  color: #0B1E3D;
}

.plan-card-header {
  background: #0B1E3D;
  color: #fff;
  text-align: center;
  padding: 2rem 1.5rem 1.5rem;
}

.plan-card-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #F5B715;
}

.plan-card-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.plan-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.plan-price {
  font-size: 2.8rem;
  font-weight: 900;
  color: #0B1E3D;
  text-align: center;
  line-height: 1.2;
}

.plan-divider {
  width: 40px;
  height: 3px;
  background: #F5B715;
  border-radius: 2px;
  margin: 1rem auto;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
}

.plan-features li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-bottom: 1px solid #f0f0f0;
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li i {
  width: 20px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--gold);
}

.plan-btn {
  display: block;
  text-align: center;
  background: #0B1E3D;
  color: #fff;
  text-decoration: none;
  padding: 0.8rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  margin-top: auto;
  border: 1.5px solid transparent;
}

.plan-btn:hover {
  background: transparent;
  color: #0B1E3D;
  border-color: #0B1E3D;
  transform: translateY(-2px);
}

/* ==========================================================================
   REDES GALLERY — Collage Grid
   ========================================================================== */

.redes-gallery {
  padding: 4rem 4rem 6rem;
  background: #f8f6f1;
}

.redes-gallery .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.redes-gallery .section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.redes-gallery .section-header p {
  font-size: 1rem;
  color: #666;
  max-width: 500px;
  margin: 0 auto;
}

.mosaic-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 400px 400px;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.mosaic-cell {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: #111;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.mosaic-cell:nth-child(1) { grid-column: 1 / 2; grid-row: 1 / 2; }
.mosaic-cell:nth-child(2) { grid-column: 2 / 3; grid-row: 1 / 2; }
.mosaic-cell:nth-child(3) { grid-column: 1 / 2; grid-row: 2 / 3; }
.mosaic-cell:nth-child(4) { grid-column: 2 / 3; grid-row: 2 / 3; }

.mosaic-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 1.5px;
  background: linear-gradient(180deg,
    rgba(245,183,21,0.3) 0%, rgba(245,183,21,0.1) 20%,
    transparent 40%, transparent 60%,
    rgba(245,183,21,0.1) 80%, rgba(245,183,21,0.3) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mosaic-cell:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 50px rgba(11, 30, 61, 0.2);
  z-index: 10;
}

.mosaic-cell:hover::after {
  opacity: 1;
}

.mosaic-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.mosaic-cell:hover img {
  transform: scale(1.06);
}

.mosaic-cell-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(11, 30, 61, 0.75));
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

.mosaic-cell:hover .mosaic-cell-overlay {
  opacity: 1;
}

.mosaic-cell-overlay span {
  font-size: 0.75rem;
  font-weight: 700;
  color: #F5B715;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ---------- web gallery ---------- */
.web-gallery .mosaic-gallery {
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 340px 340px;
  max-width: 1000px;
}

.web-gallery .mosaic-cell:nth-child(1) {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.web-gallery .mosaic-cell:nth-child(2) {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.web-gallery .mosaic-cell:nth-child(3) {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

/* ==========================================================================
   ASESORIA SHOWCASE
   ========================================================================== */

.asesoria-showcase {
  width: 100%;
  padding: 0;
  margin: 0;
}

.asesoria-showcase img {
  width: 100%;
  display: block;
}

/* ==========================================================================
   BRANDING SHOWCASE
   ========================================================================== */

.branding-layout {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.branding-plans {
  flex: 0 0 420px;
}

.branding-plans .plan-card {
  width: 100%;
}

.branding-showcase {
  flex: 1;
  margin-left: auto;
}

.branding-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

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

/* ==========================================================================
   EMPRENDEDOR — Video + Plan Layout
   ========================================================================== */

.emprendedor-layout {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.emprendedor-plans {
  flex: 0 0 420px;
}

.emprendedor-plans .plan-card {
  width: 100%;
}

.emprendedor-video {
  flex: 0 0 380px;
  margin-left: auto;
}

.video-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #0B1E3D;
  box-shadow: 0 12px 40px rgba(11, 30, 61, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.video-wrapper video {
  width: 100%;
  display: block;
  object-fit: contain;
}

.video-volume-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(11, 30, 61, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #F5B715;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 5;
}

.video-volume-btn:hover {
  background: rgba(245, 183, 21, 0.2);
  border-color: rgba(245, 183, 21, 0.3);
  transform: scale(1.1);
}

.video-volume-btn.muted {
  color: rgba(255, 255, 255, 0.4);
}



/* ==================== ANIMATIONS ==================== */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.anim-fade-down {
  opacity: 0;
  animation: fadeInDown 0.8s ease forwards;
}

.anim-fade-up {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.anim-scale {
  opacity: 0;
  animation: fadeInScale 0.6s ease forwards;
}

.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.3s; }
.anim-delay-4 { animation-delay: 0.4s; }
.anim-delay-5 { animation-delay: 0.5s; }

/* ==================== RESPONSIVE ==================== */

@media (max-width: 1100px) {
  .hero-brand-text h1 {
    font-size: 2.8rem;
  }

  .hero-content {
    gap: 3rem;
  }
}

@media (max-width: 1024px) {
  .about-founder {
    padding: 3rem 2rem;
  }
  .founder-layout {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
  }
  .founder-photo img {
    width: 240px;
    height: 300px;
  }
  .founder-text h2 {
    font-size: 1.6rem;
  }
  .about-mission,
  .about-pilars,
  .about-method,
  .about-values,
  .about-manifest {
    padding: 3rem 2rem;
  }
  .mission-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .pilars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pilar-card:nth-child(4) {
    grid-column: 1 / 2;
  }
  .pilar-card:nth-child(5) {
    grid-column: 2 / 3;
  }
  .method-grid {
    gap: 0.75rem;
  }
  .method-card {
    min-width: 130px;
    padding: 1.5rem;
  }
}

@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
    margin-left: 0;
    padding-left: 0;
  }

  .hero-slogan {
    margin-left: auto;
    margin-right: auto;
  }

  .stats-grid {
    gap: 2rem;
    flex-wrap: wrap;
  }

  .section-header h2 {
    font-size: 1.9rem;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .plan-featured {
    transform: none;
  }

  .plan-featured:hover {
    transform: translateY(-6px);
  }

  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

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

  .pilar-card:nth-child(4),
  .pilar-card:nth-child(5) {
    grid-column: auto;
  }

  .method-grid {
    flex-direction: column;
    align-items: center;
  }

  .method-arrow {
    transform: rotate(90deg);
  }

  .method-card {
    max-width: 280px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .header-nav {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    display: none;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  }

  .header-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero-brand-text h1 {
    font-size: 2.2rem;
  }

  .hero-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .hero-brand-logo {
    height: 180px;
    transform: translateY(-5px);
  }

  .hero-brand-text {
    text-align: left;
  }

  .hero-slogan {
    font-size: 0.95rem;
  }

  .hero-slogan {
    font-size: 0.95rem;
  }

  .hero-text p {
    font-size: 0.95rem;
  }

  .cta-home-content h2 {
    font-size: 1.6rem;
  }

  .cta-contact-info {
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
  }

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

  .about-home {
    padding: 5rem 0;
  }

  .home-pilars {
    padding: 3rem 1.5rem;
  }
  .services-carousel {
    height: 400px;
  }
  .service-card {
    width: 320px;
    padding: 2.5rem 1.5rem;
  }
  .service-card.side-left-2 {
    left: -6%;
  }
  .service-card.side-left {
    left: 8%;
  }
  .service-card.side-right {
    right: 8%;
  }
  .service-card.side-right-2 {
    right: -6%;
  }
  .service-card-icon {
    width: 160px;
    height: 160px;
    font-size: 3.8rem;
  }
  .service-card h3 {
    font-size: 1.15rem;
  }
  .home-band {
    padding: 1.5rem 0 1rem;
  }
  .home-band-content {
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
  }
  .band-info {
    justify-content: center;
  }
  .band-links {
    justify-content: center;
  }

  .cta-home {
    padding: 4rem 0;
  }

  .page-banner {
    height: 22vh;
    min-height: 140px;
  }

  .page-banner-content h1 {
    font-size: 1.8rem;
  }

  .page-banner-content p {
    font-size: 0.95rem;
  }

  .banner-brand {
    flex-direction: column;
    gap: 0.75rem;
  }

  .banner-logo {
    height: 180px;
  }

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

  .banner-brand-text h1 {
    font-size: 2rem;
  }

  .banner-brand-text p {
    font-size: 0.9rem;
  }

  .page-body {
    padding: 3rem 1.5rem;
  }

  .page-features {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 3rem 1.5rem;
  }

  .cta-content h2 {
    font-size: 1.7rem;
  }

  .footer {
    padding: 2rem 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-copy {
    align-items: center;
    text-align: center;
  }

  .home-btn {
    top: 12px;
    left: 12px;
    width: 36px;
    height: 36px;
  }
  .home-btn svg {
    width: 17px;
    height: 17px;
  }

  .about-hero-content {
    padding: 0 1.5rem;
  }
  .about-hero-content h1 {
    font-size: 2.2rem;
  }
  .about-hero {
    height: 40vh;
    min-height: 280px;
  }
  .plans-section {
    padding: 4rem 1.5rem;
  }
  .plans-section-header h2 {
    font-size: 1.6rem;
  }
  .service-highlights {
    gap: 1.5rem;
  }
  .highlight-item span {
    font-size: 0.8rem;
  }
  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .plan-featured {
    transform: none;
  }
  .plan-featured:hover {
    transform: translateY(-6px);
  }

  .branding-showcase {
    padding: 0;
  }
  .branding-layout {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
  .branding-plans {
    flex: none;
    width: 100%;
    max-width: 420px;
  }
  .branding-showcase {
    width: 100%;
    max-width: 420px;
    margin-left: 0;
  }

  .emprendedor-layout {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
  .emprendedor-plans {
    flex: none;
    width: 100%;
    max-width: 420px;
  }
  .emprendedor-video {
    width: 100%;
    max-width: 280px;
    margin-left: 0;
  }

  .redes-gallery {
    padding: 3rem 1.5rem;
  }
  .mosaic-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 1rem;
  }
  .mosaic-cell:nth-child(1) { grid-column: 1 / 2; grid-row: 1 / 2; }
  .mosaic-cell:nth-child(2) { grid-column: 2 / 3; grid-row: 1 / 2; }
  .mosaic-cell:nth-child(3) { grid-column: 1 / 2; grid-row: 2 / 3; }
  .mosaic-cell:nth-child(4) { grid-column: 2 / 3; grid-row: 2 / 3; }
  .about-founder,
  .about-mission,
  .about-pilars,
  .about-method,
  .about-values,
  .about-manifest {
    padding: 2.5rem 1.5rem;
  }
  .founder-text h2 {
    font-size: 1.4rem;
  }
  .pilar-card {
    padding: 1.5rem;
  }
  .method-card {
    padding: 1.25rem;
    min-width: 120px;
  }
  .manifest-content blockquote p {
    font-size: 1rem;
  }
  .web-gallery .mosaic-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 260px;
  }
  .web-gallery .mosaic-cell:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }
  .web-gallery .mosaic-cell:nth-child(2) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }
  .web-gallery .mosaic-cell:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }
}

@media (max-width: 480px) {

  .stats-grid {
    flex-direction: column;
    align-items: center;
  }

  .hero-brand-text h1 {
    font-size: 1.8rem;
  }

  .hero-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .hero-brand-logo {
    height: 160px;
    transform: translateY(-4px);
  }

  .hero-brand-text {
    text-align: left;
  }

  .hero-slogan {
    font-size: 0.85rem;
  }

  .hero-home {
    min-height: auto;
    padding: 3rem 0;
  }

  .section-header h2 {
    font-size: 1.4rem;
  }

  .home-pilars {
    padding: 2.5rem 1rem;
  }
  .services-carousel {
    height: 350px;
  }
  .service-card {
    width: 240px;
    padding: 2rem 1.25rem;
  }
  .service-card.side-left-2 {
    left: -10%;
  }
  .service-card.side-left {
    left: 4%;
  }
  .service-card.side-right {
    right: 4%;
  }
  .service-card.side-right-2 {
    right: -10%;
  }
  .service-card-icon {
    width: 120px;
    height: 120px;
    font-size: 2.8rem;
  }
  .service-card h3 {
    font-size: 1rem;
  }
  .carousel-arrow {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }
  .carousel-arrow--left {
    left: 4px;
  }
  .carousel-arrow--right {
    right: 4px;
  }
  .service-card h3 {
    font-size: 0.9rem;
  }
  .home-band {
    padding: 1rem 0 0.8rem;
  }
  .home-band-content {
    gap: 1rem;
  }
  .band-info {
    gap: 1rem;
  }
  .band-links {
    gap: 1rem;
  }
  .plans-section-header h2 {
    font-size: 1.5rem;
  }
  .plan-price {
    font-size: 2.2rem;
  }

  .plans-section {
    padding: 3rem 1.2rem;
  }
  .plans-section-header h2 {
    font-size: 1.3rem;
  }
  .plans-section-tag {
    font-size: 0.6rem;
  }
  .plan-card-header h3 {
    font-size: 1.1rem;
  }
  .service-highlights {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }
  .highlight-item {
    gap: 0.5rem;
  }
  .highlight-item i {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }
  .highlight-item span {
    font-size: 0.75rem;
  }

  .emprendedor-video {
    max-width: 240px;
  }
  .video-volume-btn {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }

  .mosaic-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 0.75rem;
  }
  .mosaic-cell:nth-child(1) { grid-column: 1 / 2; grid-row: 1 / 2; }
  .mosaic-cell:nth-child(2) { grid-column: 2 / 3; grid-row: 1 / 2; }
  .mosaic-cell:nth-child(3) { grid-column: 1 / 2; grid-row: 2 / 3; }
  .mosaic-cell:nth-child(4) { grid-column: 2 / 3; grid-row: 2 / 3; }
  .mosaic-cell-overlay { opacity: 1; }
  .redes-gallery .section-header h2 {
    font-size: 1.5rem;
  }
  .web-gallery .mosaic-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .web-gallery .mosaic-cell:nth-child(1) {
    grid-column: 1;
    grid-row: auto;
  }
  .web-gallery .mosaic-cell:nth-child(2) {
    grid-column: 1;
    grid-row: auto;
  }
  .web-gallery .mosaic-cell:nth-child(3) {
    grid-column: 1;
    grid-row: auto;
  }

  .about-founder,
  .about-mission,
  .about-pilars,
  .about-method,
  .about-values,
  .about-manifest {
    padding: 2rem 1rem;
  }
  .founder-photo img {
    width: 200px;
    height: 260px;
  }
  .founder-text h2 {
    font-size: 1.3rem;
  }
  .section-badge {
    font-size: 0.75rem;
  }
  .mission-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  .pilar-number {
    font-size: 2rem;
  }
  .value-tag {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }
  .service-card {
    padding: 1.5rem 1rem;
  }
  .service-card h3 {
    font-size: 1rem;
  }
  .footer {
    padding: 2rem 1.2rem;
  }
  .footer-inner {
    gap: 0.75rem;
  }
  .footer-links {
    gap: 0.75rem;
  }
  .cta-content h2 {
    font-size: 1.4rem;
  }
  .btn-cta {
    padding: 0.7rem 1.5rem;
    font-size: 0.75rem;
  }
}

img {
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
