/* ========== DESIGN TOKENS ========== */
:root {
  --red:        #e30613;
  --red-dark:   #b50510;
  --red-light:  #fde8e9;
  --navy:       #0c264c;
  --navy-mid:   #1a3a6b;
  --navy-light: #e8edf5;
  --white:      #ffffff;
  --off-white:  #f7f8fa;
  --gray-100:   #f3f4f6;
  --gray-200:   #e5e7eb;
  --gray-400:   #9ca3af;
  --gray-600:   #4b5563;
  --gray-800:   #1f2937;
  --black:      #0d0d0d;

  --font-display: 'Hanken Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --shadow-sm:  0 1px 3px rgba(12,38,76,.08), 0 1px 2px rgba(12,38,76,.04);
  --shadow-md:  0 4px 16px rgba(12,38,76,.10), 0 2px 6px rgba(12,38,76,.06);
  --shadow-lg:  0 12px 40px rgba(12,38,76,.14), 0 4px 12px rgba(12,38,76,.08);
  --shadow-red: 0 6px 24px rgba(227,6,19,.25);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --max-w: 1200px;
  --section-py: 80px;
  --header-h: 84px;
  --transition: 0.2s ease-in-out;
}

/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--gray-800); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }

/* GUARANTEE NO BLANK PAGE: ALL SECTIONS ARE ALWAYS VISIBLE */
.reveal { opacity: 1 !important; transform: none !important; }

/* ========== LAYOUT ========== */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-py) 0; }
.section-gray { background: var(--off-white); }

/* ========== TYPOGRAPHY ========== */
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.2; }

/* ========== UTILITIES ========== */
.tag-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px;
  background: var(--red-light); color: var(--red);
  border: 1px solid rgba(227,6,19,.2);
}
.tag-pill::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex-shrink: 0; }
.tag-navy { background: var(--navy-light); color: var(--navy); border-color: rgba(12,38,76,.2); }
.tag-eco { background: rgba(34,197,94,0.12); color: #16a34a; border-color: rgba(34,197,94,0.3); }
.tag-ai { background: rgba(227,6,19,.12); color: rgba(255,255,255,.9); border-color: rgba(227,6,19,.3); }
.tag-pill-red { background: var(--red-light); color: var(--red); border-color: rgba(227,6,19,.2); }

.section-header { margin-bottom: 48px; }
.section-header h2 { font-size: clamp(26px, 3.2vw, 38px); font-weight: 700; color: var(--navy); margin-top: 12px; }
.section-header p { margin-top: 12px; font-size: 16px; color: var(--gray-600); max-width: 640px; }
.section-header-center { text-align: center; }
.section-header-center p { margin-left: auto; margin-right: auto; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 15px; font-weight: 600;
  padding: 12px 24px; border-radius: var(--radius-md);
  transition: all var(--transition); cursor: pointer; border: 2px solid transparent;
  white-space: nowrap;
}
.btn-red { background: var(--red); color: var(--white); box-shadow: var(--shadow-red); }
.btn-red:hover { background: var(--red-dark); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); }
.btn-eco { background: #16a34a; color: var(--white); border-color: #15803d; }
.btn-eco:hover { background: #15803d; }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: white; }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy-light); }
.btn-sm { font-size: 13px; padding: 8px 16px; }

/* ========== MATERIAL ICONS ========== */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal; font-style: normal; font-size: 24px; line-height: 1;
  letter-spacing: normal; text-transform: none; display: inline-block;
  white-space: nowrap; word-wrap: normal; direction: ltr; -webkit-font-smoothing: antialiased;
}

/* ========== TOP BAR STYLES ========== */
.top-bar {
  background: var(--navy);
  color: white;
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: white;
  font-weight: 500;
  transition: color 0.2s ease;
}

.top-bar-link:hover {
  color: var(--red-light);
}

.top-bar-wa {
  color: #4ade80;
}
.top-bar-wa:hover {
  color: #86efac;
}

/* ========== NAVBAR & HEADER STYLES ========== */
.navbar, .site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  padding: 12px 0;
}

.nav-inner, .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo, .brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img, .logo img, .brand-logo img, .footer-logo, .footer-logo-img {
  height: 44px !important;
  max-height: 48px !important;
  width: auto !important;
  max-width: 180px !important;
  object-fit: contain !important;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
}

.brand-uno {
  color: var(--red) !important;
  font-weight: 800 !important;
}

.brand-soluciones {
  color: #000000 !important;
  font-weight: 800 !important;
}

.brand-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  color: var(--gray-600);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links, .main-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li, .main-nav li {
  margin: 0;
}

.nav-links a, .main-nav a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.nav-links a:hover, .nav-links a.active,
.main-nav a:hover, .main-nav a.active {
  color: var(--red);
  background: var(--red-light);
}

.nav-actions, .header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.lang-switcher { display: flex; gap: 4px; }
.lang-btn {
  font-family: var(--font-mono); font-size: 12px; font-weight: 700;
  padding: 6px 10px; border-radius: 6px; color: var(--gray-600);
  transition: all var(--transition); border: 1px solid var(--gray-200); cursor: pointer; background: var(--white);
}
.lang-btn.active { color: var(--red); background: var(--red-light); border-color: rgba(227,6,19,.4); }
.lang-btn:hover:not(.active) { color: var(--navy); background: var(--gray-100); }

.phone-chip-vector {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 13px; font-weight: 700;
  color: #15803d; background: #f0fdf4; border: 1.5px solid #bbf7d0;
  padding: 6px 14px; border-radius: 100px; transition: all var(--transition);
}
.phone-chip-vector:hover { background: #22c55e; color: white; border-color: #16a34a; }
.svg-wa-vector { width: 16px; height: 16px; flex-shrink: 0; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; }
.mobile-nav {
  display: none; position: fixed; top: 84px; left: 0; right: 0;
  background: white; border-bottom: 1px solid var(--gray-200);
  padding: 20px 24px; z-index: 999; flex-direction: column; gap: 4px;
  box-shadow: var(--shadow-md);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display); font-size: 16px; font-weight: 500;
  color: var(--gray-800); padding: 12px 16px; border-radius: var(--radius-sm);
  display: flex; align-items: center; gap: 10px;
}
.mobile-nav-footer { margin-top: 12px; padding-top: 16px; border-top: 1px solid var(--gray-200); display: flex; gap: 8px; }

/* ========== HERO & CONTENT ========== */
.hero {
  padding: 64px 0 80px;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 50%, #0d1f3c 100%);
  color: white;
}
.hero-grid { display: grid; grid-template-columns: 1fr 400px; gap: 40px; align-items: center; }
.hero-eyebrow { font-family: var(--font-mono); font-size: 11px; font-weight: 500; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 16px; }
.hero h1 { font-size: clamp(34px, 4.5vw, 54px); font-weight: 800; color: var(--white); margin-bottom: 20px; }
.hero h1 em { color: var(--red); font-style: normal; }
.hero-sub { font-size: 16px; color: rgba(255,255,255,.8); line-height: 1.6; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-visual-wrapper { display: flex; flex-direction: column; gap: 16px; }
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hero-stats { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-lg); padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.stat-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.stat-card .val {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
}
.stat-card .label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-top: 2px;
  font-weight: 600;
}
.hero-stats .stat-card {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.1);
}
.hero-stats .stat-card .val {
  color: white !important;
}
.hero-stats .stat-card .label {
  color: rgba(255,255,255,.7) !important;
}

.hero-green-page { padding: 60px 0; background: linear-gradient(135deg, #052312 0%, #0c3d20 100%); color: white; text-align: center; border-bottom: 4px solid #22c55e; }
.green-hero-badge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; font-weight: 700; text-transform: uppercase; color: #4ade80; background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.3); padding: 6px 16px; border-radius: 100px; margin-bottom: 16px; }
.hero-green-page h1 { font-size: clamp(30px, 4vw, 48px); font-weight: 800; color: white; margin-bottom: 14px; }
.green-hero-sub { font-size: 17px; color: rgba(255,255,255,0.85); max-width: 720px; margin: 0 auto; }

/* ========== HERO CAROUSEL STYLES ========== */
/* YOUTUBE PLAYER BOX COMPONENT */
.yt-player-box {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #071629;
  cursor: pointer;
  border-radius: var(--radius-md);
  user-select: none;
}

.yt-player-box * {
  pointer-events: none;
}

.yt-player-box iframe {
  pointer-events: auto !important;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 540px;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  display: flex;
  align-items: center;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(100deg, rgba(12, 38, 76, 0.70) 0%, rgba(12, 38, 76, 0.45) 60%, rgba(12, 38, 76, 0.20) 100%);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 3;
  color: white;
  max-width: 780px;
  padding: 40px 24px;
}

.slide-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: white;
  margin: 14px 0 16px 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.slide-desc {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 680px;
}

.slide-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.btn-outline-light:hover {
  background: white;
  color: var(--navy);
  border-color: white;
}

/* CAROUSEL CONTROLS */
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-control:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-50%) scale(1.08);
}

.carousel-prev { left: 24px; }
.carousel-next { right: 24px; }

.carousel-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.carousel-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dots .dot.active {
  background: var(--red);
  width: 32px;
  border-radius: 100px;
}

.feature-banner { background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 100%); border-radius: var(--radius-xl); padding: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; color: white; }
.feature-banner-tag { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 10px; font-weight: 600; text-transform: uppercase; color: var(--red); background: rgba(227,6,19,.15); padding: 4px 12px; border-radius: 100px; margin-bottom: 16px; }
.feature-banner h2 { font-size: clamp(24px, 2.6vw, 32px); font-weight: 700; color: white; margin-bottom: 14px; }
.feature-banner p { font-size: 15.5px; color: rgba(255,255,255,.8); line-height: 1.6; }
.feature-visual { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.feature-metric { background: rgba(255,255,255,.08); border-radius: var(--radius-md); padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; }
.feature-metric .metric-val { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: white; }
.feature-metric .metric-label { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; color: rgba(255,255,255,.6); }

.video-gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.video-card { background: white; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; }
.video-wrapper { position: relative; width: 100%; background: #000; }
.video-info { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.video-badge { font-family: var(--font-mono); font-size: 10px; font-weight: 700; text-transform: uppercase; color: var(--red); background: var(--red-light); padding: 4px 10px; border-radius: 100px; width: fit-content; }
.video-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--navy); }
.video-desc { font-size: 13px; color: var(--gray-600); line-height: 1.5; }
.video-card-future { border-style: dashed; background: var(--off-white); }
.video-placeholder { height: 210px; background: rgba(12,38,76,0.05); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; }
.future-tag { font-family: var(--font-mono); font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--gray-600); background: var(--gray-200); padding: 4px 12px; border-radius: 100px; }

.blog-quote-card { background: #f0fdf4; border: 2px solid #bbf7d0; border-radius: var(--radius-xl); padding: 44px; margin-bottom: 64px; box-shadow: var(--shadow-sm); }
.quote-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; border-bottom: 1px solid #dcfce7; padding-bottom: 14px; }
.quote-icon { font-size: 40px; color: #16a34a; }
.quote-header h3 { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: #14532d; }
.quote-date { font-family: var(--font-mono); font-size: 11.5px; color: #16a34a; font-weight: 600; }
.quote-body { font-family: var(--font-body); font-size: 15.5px; color: #166534; line-height: 1.7; }

.green-pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 24px; margin-bottom: 72px; }
.green-pillar-card { background: white; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 28px 20px; }
.pillar-icon-box { width: 48px; height: 48px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.pillar-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.pillar-desc { font-size: 13.5px; color: var(--gray-600); line-height: 1.5; }

.eco-section { background: linear-gradient(135deg, #052312 0%, #0c3d20 100%); color: white; }
.eco-box { background: rgba(255,255,255,.04); border: 1px solid rgba(34,197,94,.25); border-radius: var(--radius-xl); padding: 48px; }
.eco-grid h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 700; color: white; margin-top: 12px; margin-bottom: 14px; }
.eco-desc { font-size: 15.5px; color: rgba(255,255,255,.8); line-height: 1.6; margin-bottom: 24px; }

.bitdefender-section { background: linear-gradient(135deg, #091a34 0%, #0c264c 100%); color: white; }
.bitdefender-box { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-xl); padding: 48px; }
.bitdefender-header { text-align: center; margin-bottom: 40px; }
.bitdefender-logo-wrap { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 14px; }
.partner-badge { font-family: var(--font-mono); font-size: 10px; font-weight: 700; text-transform: uppercase; color: #00d4ff; background: rgba(0,212,255,.12); padding: 4px 10px; border-radius: 100px; border: 1px solid rgba(0,212,255,.3); }
.bitdefender-header h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 700; color: white; margin-bottom: 10px; }
.bitdefender-header p { font-size: 15.5px; color: rgba(255,255,255,.7); max-width: 580px; margin: 0 auto; }
.bitdefender-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.bd-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); padding: 32px; display: flex; flex-direction: column; }
.bd-card-biz { border-color: rgba(227,6,19,.4); background: rgba(227,6,19,.04); }
.bd-tag { font-family: var(--font-mono); font-size: 10px; font-weight: 700; text-transform: uppercase; color: var(--red); background: rgba(227,6,19,.15); padding: 4px 12px; border-radius: 100px; margin-bottom: 14px; width: fit-content; }
.bd-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: white; margin-bottom: 10px; }
.bd-desc { font-size: 13.5px; color: rgba(255,255,255,.75); line-height: 1.5; margin-bottom: 20px; flex: 1; }
.bd-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.bd-features li { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,.9); }
.bd-features li::before { content: '✓'; color: #10b981; font-weight: bold; }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card { background: white; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 28px 20px; display: flex; flex-direction: column; }
.service-card-featured { border-color: var(--red); }
.service-icon { width: 44px; height: 44px; border-radius: var(--radius-md); background: var(--red-light); color: var(--red); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.service-icon-navy { background: var(--navy-light); color: var(--navy); }
.service-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.service-desc { font-size: 13px; color: var(--gray-600); line-height: 1.5; flex: 1; margin-bottom: 14px; }
.service-badge { font-family: var(--font-mono); font-size: 10px; font-weight: 700; text-transform: uppercase; color: var(--red); background: var(--red-light); padding: 2px 8px; border-radius: 4px; width: fit-content; margin-bottom: 10px; }
.service-link { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--red); }

.platforms-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.platform-card { background: white; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 28px 20px; display: flex; flex-direction: column; }
.platform-card.platform-featured { border-color: var(--navy-mid); }
.platform-icon { width: 44px; height: 44px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.platform-name { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.platform-desc { font-size: 13px; color: var(--gray-600); line-height: 1.5; }

.ai-section { background: var(--navy); color: white; }
.ai-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.ai-grid h2 { font-size: clamp(26px, 3.2vw, 36px); font-weight: 700; color: white; }
.ai-desc { font-size: 16px; color: rgba(255,255,255,.8); margin: 14px 0 20px; }
.ai-tools { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.ai-tool-chip { display: flex; align-items: center; gap: 6px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 100px; padding: 6px 14px; font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,.9); }
.ai-tool-chip .dot { width: 8px; height: 8px; border-radius: 50%; }
.ai-comparison { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.ai-comparison-title { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; color: rgba(255,255,255,.4); }
.ai-vs-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px; }
.ai-vs-item { background: rgba(255,255,255,.06); border-radius: var(--radius-md); padding: 12px; text-align: center; }
.ai-vs-item.good { border: 1px solid rgba(227,6,19,.4); background: rgba(227,6,19,.1); }
.ai-vs-label { font-family: var(--font-mono); font-size: 9px; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 4px; }
.ai-vs-val { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: white; }
.ai-vs-val.red-val { color: var(--red); }
.ai-vs-sep { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: rgba(255,255,255,.3); }

.profiles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.profile-card { background: white; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; }
.profile-card-highlight { border-color: var(--red); background: linear-gradient(180deg, #ffffff 0%, #fffbfb 100%); }
.profile-icon { width: 60px; height: 60px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.profile-icon-red { background: var(--red); }
.profile-icon-navy-biz { background: var(--navy-mid); }
.profile-title { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.profile-desc { font-size: 13px; color: var(--gray-600); line-height: 1.5; margin-bottom: 16px; }
.profile-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.profile-tag { font-size: 11px; color: var(--navy); background: var(--navy-light); padding: 4px 10px; border-radius: 100px; font-weight: 500; }

.clients-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 20px; margin-bottom: 24px; }
.client-logo-placeholder { background: var(--gray-100); border-radius: 8px; padding: 10px 18px; font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--gray-600); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.testimonial-card { background: white; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.stars { color: #f59e0b; font-size: 16px; }
.testimonial-text { font-size: 14px; color: var(--gray-600); line-height: 1.6; flex: 1; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; padding-top: 10px; border-top: 1px solid var(--gray-100); }
.author-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 15px; font-weight: 700; color: white; }
.author-name { font-family: var(--font-display); font-size: 13.5px; font-weight: 600; color: var(--navy); }
.author-role { font-size: 11.5px; color: var(--gray-400); }

.contact-grid { display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; padding: 18px; border-radius: var(--radius-md); background: var(--navy-light); border: 1px solid var(--gray-200); }
.contact-item-wa { background: #f0fdf4; border-color: #bbf7d0; }
.contact-icon-wa { background: #22c55e; }
.contact-item-icon { width: 40px; height: 40px; flex-shrink: 0; background: var(--navy); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; }
.contact-item-text .label { font-size: 10.5px; font-family: var(--font-mono); text-transform: uppercase; color: var(--gray-400); margin-bottom: 2px; }
.contact-item-text .value { font-family: var(--font-display); font-weight: 600; color: var(--navy); font-size: 15px; }
.contact-item-text .sub { font-size: 12.5px; color: var(--gray-600); margin-top: 2px; }
.contact-form { background: white; border: 1px solid var(--gray-200); border-radius: var(--radius-xl); padding: 32px; box-shadow: var(--shadow-md); }
.form-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.form-sub { font-size: 13.5px; color: var(--gray-600); margin-bottom: 20px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 12.5px; font-weight: 600; color: var(--gray-800); margin-bottom: 4px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 10px 12px; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 14px; color: var(--gray-800); background: var(--white); outline: none; }
.form-group textarea { min-height: 90px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit { width: 100%; padding: 12px; background: var(--red); color: white; font-family: var(--font-display); font-size: 15px; font-weight: 700; border-radius: var(--radius-md); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 8px; }
/* ========== ELEGANT PRICING CONTRACT CARDS ========== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--navy-mid);
}

.pricing-card-featured {
  border: 2px solid var(--red) !important;
  background: linear-gradient(180deg, #ffffff 0%, #fffdfd 100%);
  box-shadow: 0 12px 36px rgba(227, 6, 19, 0.15);
}

.pricing-card-featured:hover {
  box-shadow: 0 18px 48px rgba(227, 6, 19, 0.22);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: white;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 18px;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(227, 6, 19, 0.3);
  white-space: nowrap;
}

.pricing-card-visual {
  width: 100%;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pricing-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.pricing-subtitle {
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-800);
  line-height: 1.45;
}

.pricing-features li span.material-symbols-outlined {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.form-success { display: none; text-align: center; padding: 24px; color: var(--navy); flex-direction: column; align-items: center; }

.cookie-banner { position: fixed; bottom: 20px; left: 20px; right: 20px; max-width: 800px; margin: 0 auto; background: rgba(12, 38, 76, 0.96); backdrop-filter: blur(12px); color: white; border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.15); box-shadow: var(--shadow-lg); z-index: 2000; padding: 20px 24px; display: none; }
.cookie-banner.show { display: block; }
.cookie-content { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.cookie-text { max-width: 540px; }
.cookie-title { font-family: var(--font-display); font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.cookie-text p { font-size: 13px; color: rgba(255,255,255,0.8); }

.site-footer { background: var(--black); color: rgba(255,255,255,.6); padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.footer-logo-img { height: 50px; margin-bottom: 12px; object-fit: contain; }
.footer-brand p { font-size: 13px; line-height: 1.6; max-width: 280px; }
.footer-col h4 { font-family: var(--font-display); font-size: 12.5px; font-weight: 700; color: white; text-transform: uppercase; margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 6px; }
.footer-links a { font-size: 13px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; font-size: 12px; }

/* ========== HAMBURGER BUTTON & MOBILE NAV DRAWER ========== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8.75px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8.75px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
  box-shadow: var(--shadow-lg);
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border-bottom: 1px solid var(--gray-100);
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-nav a:hover, .mobile-nav a:active {
  background: var(--navy-light);
  color: var(--navy-mid);
}

.mobile-nav-footer {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
  justify-content: center;
}

/* ========== MODALITATS & CUOTAS RESPONSIVE STYLES ========== */
.rates-vector-banner {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px 40px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: center;
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
}

.rates-vector-graphic {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}

.cuota-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.cuota-card {
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.cuota-badge-recommended {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--red);
  color: white;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 1px;
}

.rate-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--off-white);
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  flex-wrap: wrap;
  gap: 6px;
}

/* ========== RESPONSIVE MEDIA QUERIES ========== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .feature-banner { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; }
  .rates-vector-banner { grid-template-columns: 1fr; padding: 24px 20px; gap: 24px; }
  .cuota-comparison-grid { grid-template-columns: 1fr; gap: 24px; }
  .cuota-card { padding: 28px 24px; }
  .cuota-badge-recommended { position: relative; top: 0; right: 0; margin-bottom: 12px; display: inline-block; width: fit-content; }
  .bitdefender-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .platforms-grid { grid-template-columns: repeat(2, 1fr); }
  .rates-summary-grid { grid-template-columns: 1fr; }
  .green-pillars-grid { grid-template-columns: 1fr; }
  .video-gallery-grid { grid-template-columns: 1fr; }
  .ai-grid { grid-template-columns: 1fr; gap: 32px; }
  .profiles-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 920px) {
  .main-nav, .nav-links { display: none !important; }
  .hamburger { display: flex !important; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --section-py: 56px;
    --header-h: 70px;
  }

  body {
    overflow-x: hidden;
  }

  .container {
    padding: 0 16px;
  }

  .brand-logo img.logo-img {
    height: 42px;
    max-height: 44px;
  }

  .header-actions {
    gap: 8px;
  }

  .phone-chip-vector span {
    display: none;
  }

  .phone-chip-vector {
    padding: 8px;
    border-radius: 50%;
  }

  .hero {
    padding-top: 36px;
  }

  .hero h1 {
    font-size: clamp(26px, 7vw, 36px);
    line-height: 1.2;
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .stat-card {
    padding: 16px;
  }

  .stat-card .num {
    font-size: 28px;
  }

  .rates-vector-banner {
    padding: 20px 16px;
    border-radius: var(--radius-lg);
  }

  .cuota-card {
    padding: 24px 18px;
    border-radius: var(--radius-lg);
  }

  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .platforms-grid { grid-template-columns: 1fr; gap: 16px; }
  .profiles-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }

  .contact-form {
    padding: 24px 18px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px; /* Previene zoom automático en iOS al enfocar campos */
    min-height: 44px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 16px;
  }

  .cookie-content {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .cuota-card {
    padding: 18px 14px;
  }

  .rate-item-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .lang-switcher .lang-btn {
    padding: 5px 7px;
    font-size: 11px;
  }
}

/* ========== MISSING / SUPPLEMENTAL STYLES ========== */

/* Carousel hero section wrapper */
.carousel-hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Video embed box */
.video-embed-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}

/* Large button variant */
.btn-lg {
  font-size: 17px;
  padding: 16px 32px;
}

/* Skip link accessibility */
.skip-link { position: absolute; top: -40px; left: 6px; z-index: 9999; padding: 8px 16px; background: var(--red); color: white; border-radius: 4px; font-size: 13px; font-weight: 600; }
.skip-link:focus { top: 6px; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; }
.focusable:focus { width: auto !important; height: auto !important; clip: auto !important; }

/* Menu toggle (hamburger) button */
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--gray-100);
  color: var(--navy);
  cursor: pointer;
  border: none;
  transition: background 0.2s ease;
}
.menu-toggle:hover { background: var(--navy-light); }

/* Footer */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 0;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-col-main { }
.footer-brand { margin-bottom: 16px; }
.footer-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  max-width: 320px;
}
.footer-heading {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: white; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
}
.footer-contact-item a { color: rgba(255,255,255,0.65); transition: color 0.2s ease; }
.footer-contact-item a:hover { color: white; }
.footer-contact-item .material-symbols-outlined { font-size: 18px; color: rgba(255,255,255,0.4); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12.5px;
  color: rgba(255,255,255,0.35);
}

/* ========== CONTACT GRID & FORM STYLES ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: 14.5px;
  font-family: inherit;
  color: var(--navy);
  background: white;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.form-input:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(12, 38, 76, 0.1);
}

#contact-form button[type="submit"] {
  width: 100%;
  margin-top: 12px;
  padding: 14px 24px;
  font-size: 16px;
  justify-content: center;
}

@media (max-width: 850px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ========== RESPONSIVE: FOOTER & MENU TOGGLE ========== */
@media (max-width: 920px) {
  .menu-toggle { display: flex !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ========== JOOMLA NATIVE MENU MODULE INTEGRATION ========== */
.nav-links, .main-nav ul, .mod-menu, ul.mod-menu, .menu, ul.menu, .metismenu {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-wrap: wrap !important;
}

.nav-links li, .main-nav li, .mod-menu li, ul.mod-menu li, .menu li, .metismenu li {
  margin: 0 !important;
  list-style: none !important;
  display: inline-block !important;
}

.nav-links a, .main-nav a, .mod-menu a, ul.mod-menu a, .menu a, .mod-menu__link, .metismenu a {
  font-family: var(--font-display) !important;
  font-size: 14.5px !important;
  font-weight: 600 !important;
  color: var(--navy) !important;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm) !important;
  transition: all 0.2s ease !important;
  white-space: nowrap !important;
  text-decoration: none !important;
  display: inline-block !important;
}

.nav-links a:hover, .nav-links a.active,
.main-nav a:hover, .main-nav a.active,
.mod-menu a:hover, .mod-menu a.active,
.mod-menu .active > a, .menu .active > a, .metismenu .active > a,
.mod-menu li.current > a, .menu li.current > a {
  color: var(--red) !important;
  background: var(--red-light) !important;
}

/* ========== HIDE JOOMLA DEFAULT ARTICLE METADATA & PAGE HEADERS ========== */
.page-header,
.article-info,
.article-details,
dl.article-info,
.published,
.createdby,
.category-name,
.hits,
.parent-category-name {
  display: none !important;
}

/* ========== COOKIE CONSENT BANNER STYLES ========== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 960px;
  margin: 0 auto;
  background: rgba(12, 38, 76, 0.96);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  z-index: 99999;
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  color: white;
}

.cookie-banner.show {
  display: block !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-text {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  flex: 1;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* ========== GOOGLE REVIEWS SECTION ========== */
.google-reviews-section {
  background: var(--off-white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 64px 0;
}

.google-rating-box {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}

.google-rating-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.google-g-logo {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.google-stars {
  color: #fbbc04;
  font-size: 20px;
  letter-spacing: 2px;
}

.google-rating-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
}

.google-rating-sub {
  font-size: 13.5px;
  color: var(--gray-600);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.review-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--navy-light);
}

.review-stars {
  color: #fbbc04;
  font-size: 16px;
  margin-bottom: 12px;
}

.review-quote {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-700);
  flex: 1;
  margin-bottom: 16px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--gray-100);
  padding-top: 14px;
}

.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy-light);
  color: var(--navy);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
}

.author-tag {
  font-size: 11.5px;
  color: var(--gray-600);
}

/* ========== COMPROMÍS VERD PAGE ENHANCED BLOCK SPACING ========== */
.hero-green-page {
  padding: 64px 0 48px;
  background: linear-gradient(135deg, #052312 0%, #0c3d20 100%);
  color: white;
  margin-bottom: 40px;
}
.green-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 6px 16px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 20px;
}
.green-hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 820px;
  line-height: 1.6;
  margin-top: 16px;
}
.green-section-block {
  margin-top: 64px;
  margin-bottom: 64px;
}

/* ========== GLOBAL CARD & BLOCK SEPARATION OVERRIDES (NO OVERLAP) ========== */
.blog-quote-card {
  margin-bottom: 64px !important;
  display: block !important;
  clear: both !important;
  position: relative !important;
}

.green-pillars-grid {
  margin-top: 48px !important;
  margin-bottom: 64px !important;
  display: grid !important;
  clear: both !important;
  position: relative !important;
  gap: 32px !important;
}

.services-grid, .platforms-grid, .profiles-grid, .pricing-grid, .video-gallery-grid, .reviews-grid {
  margin-top: 32px !important;
  margin-bottom: 48px !important;
  gap: 28px !important;
}

#bosquia-video-section, #bosquia-carousel-section {
  margin-top: 64px !important;
  margin-bottom: 64px !important;
  clear: both !important;
  position: relative !important;
}
