@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Sora:wght@400;500;600;700;800&display=swap');

:root {
  /* DARK THEME PALETTE */
  --primary-deep-blue: #030d12;
  --secondary-steel-blue: #8ca3b0;
  --accent-cyan: #17B7C9;
  --accent-orange: #E66A1A;
  /* Amarillo institucional PROCAT */
  --accent-yellow: #F5A800;
  --accent-yellow-dark: #D48F00;
  --white: #FFFFFF;
  --graphite: #e2e8f0;
  
  /* Background layers for depth */
  --dark-bg-1: #051117;
  --dark-bg-2: #091a22;
  --dark-bg-3: #0d2530;
  --dark-bg-card: rgba(13, 37, 48, 0.6);
  
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --glass-bg: rgba(5, 17, 23, 0.7);
  --glass-border: rgba(23, 183, 201, 0.15);
  
  --glow-cyan: 0 0 20px rgba(23, 183, 201, 0.2);
  --glow-cyan-strong: 0 0 30px rgba(23, 183, 201, 0.4);
  --glow-yellow: 0 0 20px rgba(245, 168, 0, 0.3);
  --glow-yellow-strong: 0 0 35px rgba(245, 168, 0, 0.5);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--graphite);
  background-color: var(--dark-bg-1);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Background grid pattern global */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: 
    linear-gradient(rgba(23, 183, 201, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 183, 201, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: -1;
  pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--white);
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

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

/* Typography Utilities */
.text-cyan { color: var(--accent-cyan); }
.text-orange { color: var(--accent-orange); }
.text-yellow { color: var(--accent-yellow); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

/* Layout Utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.section-padding {
  padding: 6rem 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2.2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--accent-yellow);
  color: #0a0a0a;
  box-shadow: 0 4px 15px rgba(245, 168, 0, 0.25);
  font-weight: 700;
}

.btn-primary:hover {
  background-color: var(--accent-yellow-dark);
  transform: translateY(-2px);
  box-shadow: var(--glow-yellow-strong);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  box-shadow: 0 0 15px rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: var(--transition);
  background-color: rgba(3, 13, 18, 0.8);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.navbar.scrolled {
  padding: 1rem 0;
  background-color: rgba(3, 13, 18, 0.95);
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
  border-bottom: 1px solid var(--glass-border);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 1px;
}

.logo span::after {
  content: '.';
  color: var(--accent-cyan);
}

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

.nav-links a {
  font-weight: 500;
  color: var(--secondary-steel-blue);
  transition: var(--transition);
  position: relative;
  font-size: 0.95rem;
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-cyan);
  transition: var(--transition);
  box-shadow: 0 0 10px var(--accent-cyan);
}

.nav-links a:not(.btn):hover {
  color: var(--white);
  text-shadow: 0 0 8px rgba(255,255,255,0.3);
}

.nav-links a:not(.btn):hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--white);
  position: relative;
  transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 2px;
  background-color: var(--white);
  transition: var(--transition);
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 0;
  background-color: var(--primary-deep-blue);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: 0;
}

/* Hide old hero background element now unused */
.hero-bg {
  display: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* More transparent so the video is clearly visible */
  background: linear-gradient(135deg, rgba(3, 13, 18, 0.65) 0%, rgba(5, 17, 23, 0.45) 100%),
              radial-gradient(circle at 30% 50%, rgba(23, 183, 201, 0.06) 0%, transparent 60%);
  z-index: 1;
}

.hero-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(23, 183, 201, 0.04) 1px, transparent 1px),
  linear-gradient(90deg, rgba(23, 183, 201, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  color: var(--white);
  max-width: 800px;
  padding-top: 5rem; /* compensate for fixed navbar */
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.hero-title span {
  color: var(--accent-yellow);
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
}

.hero-floating-card {
  position: absolute;
  right: 5%;
  bottom: 10%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  padding: 2rem;
  border-radius: 12px;
  color: var(--white);
  z-index: 10;
  max-width: 350px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(23,183,201,0.05);
  border-left: 4px solid var(--accent-orange);
}

.floating-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.floating-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.floating-item i {
  color: var(--accent-cyan);
  font-size: 1.2rem;
  filter: drop-shadow(0 0 5px rgba(23,183,201,0.5));
}

.floating-item span {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--graphite);
}

/* Indicators Strip */
.indicators {
  background-color: #ffffff;
  border-top: 2px solid #e8e8e8;
  border-bottom: 2px solid #e8e8e8;
  position: relative;
  z-index: 20;
  padding: 2.5rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.indicators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.indicator-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.indicator-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background-color: #1a1a1a;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-yellow);
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.indicator-text {
  font-weight: 600;
  font-size: 0.88rem;
  color: #1a1a1a;
  line-height: 1.4;
}

/* About Section */
.about {
  background-color: var(--dark-bg-1);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

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

.section-subtitle {
  color: var(--accent-cyan);
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  display: inline-block;
  padding: 5px 15px;
  background: rgba(23, 183, 201, 0.1);
  border-radius: 4px;
  border: 1px solid rgba(23, 183, 201, 0.2);
}

.about .section-subtitle {
  color: #0065CE;
  background: transparent;
  border: none;
  padding: 0;
}

.quote-section .section-subtitle {
  color: #0065CE;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.about-text {
  color: var(--secondary-steel-blue);
  font-size: 1.1rem;
}

.about-text strong {
  color: var(--white);
  font-weight: 600;
}

.about-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.about-image img {
  width: 100%;
  height: auto;
  transition: transform 0.8s ease;
  filter: brightness(0.8) contrast(1.1);
}

.about-image:hover img {
  transform: scale(1.05);
  filter: brightness(1) contrast(1.1);
}

.about-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--accent-cyan);
  border-radius: 12px;
  pointer-events: none;
  box-shadow: inset 0 0 30px rgba(23, 183, 201, 0.2);
}

/* Subtle Petroleum Backgrounds */
.bg-subtle-petroleum {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}

.bg-subtle-petroleum::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-bg-1);
  opacity: 0.85; /* Ajusta la opacidad aquí (0.85 es muy oscuro, la imagen se verá sutil) */
  mix-blend-mode: multiply;
  z-index: -1;
}

/* Services Grid Section */
.services-grid-section {
  background: linear-gradient(135deg, #f4f7f9 0%, #ffffff 100%);
}

.services-grid-section .section-subtitle {
  color: #0065CE;
  background: transparent;
  border: none;
  padding: 0;
}

.services-grid-section .section-title {
  color: #111827;
}

.services-grid-section .about-text {
  color: #4b5563;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: #ffffff;
  border: none;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.09);
}

.service-icon {
  width: 64px;
  height: 64px;
  background-color: #0c1b26; /* Dark background container for icon */
  border: none;
  border-radius: 14px; /* Rounded corners */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-yellow); /* Yellow icon */
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background-color: var(--accent-yellow);
  color: #0c1b26;
  box-shadow: var(--glow-yellow-strong);
}

.service-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #111827; /* Dark title */
  font-family: var(--font-heading);
  text-align: center;
}

.service-list {
  margin-bottom: 2rem;
  width: 100%;
  padding: 0;
  list-style: none;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: #4b5563; /* Slate 600 */
  line-height: 1.5;
  margin-bottom: 0.8rem;
  text-align: left;
}

.service-list li i {
  color: var(--accent-cyan);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.service-benefit {
  font-size: 0.9rem;
  font-weight: 500;
  color: #1f2937; /* Dark text */
  background-color: #f1f5f9; /* Very light gray block */
  border-left: 3px solid var(--accent-yellow); /* Yellow left accent border */
  padding: 1rem 1.2rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
}

.service-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0f172a; /* Dark charcoal text for link */
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: capitalize; /* "Consultar detalle" capitalizing first letter */
  letter-spacing: 0.5px;
  margin-top: auto; /* Push link to the bottom */
  transition: var(--transition);
}

.service-link:hover {
  color: var(--accent-yellow);
}

.service-link:hover i {
  transform: translateX(5px);
}

.service-link i {
  transition: var(--transition);
}

/* Core Specialty Section */
.core-specialty {
  background-color: #02080b;
  background-image: radial-gradient(circle at center, rgba(23, 183, 201, 0.05) 0%, transparent 60%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.core-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 5rem;
}

.core-specialty .section-subtitle {
  background: transparent;
  border: none;
  color: var(--accent-yellow);
  padding: 0;
}

.core-specialty .section-subtitle {
  background: transparent;
  border: none;
  color: var(--accent-yellow);
  padding: 0;
}

.core-text {
  font-size: 1.2rem;
  color: var(--secondary-steel-blue);
}

.process-diagram {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 3rem 0;
}

.process-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgba(23, 183, 201, 0.1);
  z-index: 1;
}

.process-line-active {
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-orange));
  z-index: 2;
  width: 0;
  transition: width 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 0 15px rgba(23, 183, 201, 0.5);
}

.process-step {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 160px;
  text-align: center;
}

.step-node {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--primary-deep-blue);
  border: 3px solid rgba(23, 183, 201, 0.3);
  position: relative;
  transition: var(--transition);
}

.process-step.active .step-node {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 20px rgba(23, 183, 201, 0.6);
  background-color: var(--dark-bg-2);
}

.step-node::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-orange);
  opacity: 0;
  transition: var(--transition);
}

.process-step.active .step-node::after {
  opacity: 1;
  box-shadow: 0 0 10px var(--accent-orange);
}

.step-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--secondary-steel-blue);
  transition: var(--transition);
}

.process-step.active .step-label {
  color: var(--white);
  text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

/* Differentials */
.differentials {
  background-color: var(--dark-bg-2);
  position: relative;
}

#diferenciales .section-subtitle {
  background: transparent;
  border: none;
  color: var(--accent-yellow);
  padding: 0;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.diff-card {
  background-color: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 2.5rem 2rem;
  border-radius: 14px;
  position: relative;
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 3px solid var(--accent-yellow);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  transition: var(--transition);
  max-width: 340px;
  width: 100%;
}

.diff-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.4), var(--glow-yellow);
  background-color: rgba(255,255,255,0.12);
}

.diff-icon {
  font-size: 2.2rem;
  color: var(--accent-yellow);
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 0 8px rgba(245,168,0,0.4));
}

.diff-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.diff-text {
  color: var(--secondary-steel-blue);
  font-size: 1rem;
}

/* Coverage */
.coverage {
  background-color: #ffffff;
}

.coverage .section-title {
  color: var(--primary-deep-blue);
}

.coverage .section-subtitle {
  background: transparent;
  border: none;
  color: #0065CE;
  padding: 0;
  font-weight: 700;
  letter-spacing: 2px;
}

.coverage-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.coverage-map {
  position: relative;
  height: 450px;
  background-color: var(--dark-bg-2);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(23, 183, 201, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 50px rgba(0,0,0,0.5), 0 20px 40px rgba(0,0,0,0.3);
}

.coverage-map::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(23, 183, 201, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 183, 201, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
}

.map-point {
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: var(--accent-cyan);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--accent-cyan), 0 0 0 6px rgba(23, 183, 201, 0.2);
  animation: pulse 2.5s infinite;
  z-index: 5;
}

.map-point.anaco {
  top: 45%;
  right: 35%; 
}

.map-point.faja {
  top: 58%;
  right: 45%;
  background-color: var(--accent-orange);
  box-shadow: 0 0 15px var(--accent-orange), 0 0 0 6px rgba(230, 106, 26, 0.2);
  animation-delay: 1s;
}

.coverage-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.coverage-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: var(--transition);
}

.coverage-item:hover {
  border-color: rgba(23,183,201,0.4);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.coverage-icon {
  color: var(--accent-cyan);
  font-size: 1.8rem;
  margin-top: 2px;
}

.coverage-info h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-deep-blue);
}

.coverage-info p {
  color: rgba(3, 13, 18, 0.7);
  font-size: 1rem;
}

/* Trust Section */
.trust {
  background-color: var(--dark-bg-2);
  padding: 5rem 0;
  border-top: 1px solid rgba(23, 183, 201, 0.1);
  border-bottom: 1px solid rgba(23, 183, 201, 0.1);
  text-align: center;
}

.trust .section-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.trust-text {
  max-width: 800px;
  margin: 0 auto 3.5rem;
  color: var(--secondary-steel-blue);
  font-size: 1.1rem;
}

.badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.badge {
  padding: 1.2rem 2.5rem;
  background-color: var(--dark-bg-3);
  border: 1px solid rgba(23, 183, 201, 0.2);
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 1px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--graphite);
}

.badge:hover {
  background-color: rgba(23, 183, 201, 0.05);
  border-color: var(--accent-cyan);
  color: var(--white);
  box-shadow: var(--glow-cyan);
  transform: translateY(-5px);
}

.badge i {
  color: var(--accent-yellow);
  font-size: 1.3rem;
}

/* CTA Section */
.cta {
  background-color: var(--dark-bg-1);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 8rem 0;
}

.cta-container {
  background-color: var(--dark-bg-2);
  border-radius: 16px;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(23, 183, 201, 0.2);
}

.cta-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(23, 183, 201, 0.03) 0px,
    rgba(23, 183, 201, 0.03) 2px,
    transparent 2px,
    transparent 15px
  );
  z-index: 1;
  animation: bgScroll 60s linear infinite;
}

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

.cta-title {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.cta-text {
  color: var(--secondary-steel-blue);
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

/* Footer */
.footer {
  background-color: #010609;
  color: var(--white);
  padding: 5rem 0 2rem;
  border-top: 3px solid var(--accent-yellow);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 5rem;
  margin-bottom: 4rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 1px;
}

.footer-logo::after {
  content: '.';
  color: var(--accent-cyan);
}

.footer-slogan {
  color: var(--secondary-steel-blue);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--white);
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background-color: var(--accent-cyan);
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--secondary-steel-blue);
  transition: var(--transition);
  font-size: 1rem;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent-cyan);
  transform: translateX(5px);
}

.footer-contact li {
  display: flex;
  gap: 15px;
  margin-bottom: 1.2rem;
  color: var(--secondary-steel-blue);
  font-size: 1rem;
  align-items: flex-start;
}

.footer-contact i {
  color: var(--accent-cyan);
  margin-top: 5px;
  font-size: 1.1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
}

/* Animations */
@keyframes pulse {
  0% { box-shadow: 0 0 15px var(--accent-cyan), 0 0 0 0 rgba(23, 183, 201, 0.4); }
  70% { box-shadow: 0 0 15px var(--accent-cyan), 0 0 0 15px rgba(23, 183, 201, 0); }
  100% { box-shadow: 0 0 15px var(--accent-cyan), 0 0 0 0 rgba(23, 183, 201, 0); }
}

@keyframes bgScroll {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-title {
    font-size: 3.2rem;
  }
  .coverage-container {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--dark-bg-2);
    border-bottom: 1px solid rgba(23,183,201,0.2);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 20px 30px rgba(0,0,0,0.5);
    gap: 1.5rem;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .menu-toggle {
    display: block;
  }

  .menu-toggle.active .hamburger { background-color: transparent; }
  .menu-toggle.active .hamburger::before { transform: rotate(45deg); top: 0; }
  .menu-toggle.active .hamburger::after { transform: rotate(-45deg); top: 0; }

  .hero-grid-pattern {
    display: none;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }

  .about-grid, .coverage-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .process-diagram {
    flex-direction: column;
    gap: 2rem;
  }
  
  .process-line, .process-line-active {
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-floating-card {
    display: none;
  }

  .hero-buttons, .cta-buttons {
    flex-direction: column;
  }
}

/* Supply Cards Grid & Item styles */
.supply-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.supply-card {
  background-color: var(--dark-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
  backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
}

.supply-card:hover {
  transform: translateY(-10px);
  border-color: rgba(23, 183, 201, 0.25);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.5), var(--glow-cyan);
}

.supply-card-img-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.supply-card-img-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 60%, rgba(5, 17, 23, 0.9));
  z-index: 1;
}

.supply-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.supply-card-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  background-color: rgba(9, 26, 34, 0.85);
}

.supply-card-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.supply-card-desc {
  font-size: 0.9rem;
  color: var(--secondary-steel-blue);
  line-height: 1.5;
}

/* Supply Products Section (Light Theme) */
.supply-products-section {
  background: linear-gradient(135deg, #f4f7f9 0%, #ffffff 100%);
}

.supply-products-section .section-title {
  color: #111827;
}

.supply-products-section .about-text {
  color: #4b5563;
}

.supply-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.supply-product-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.supply-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: rgba(0, 101, 206, 0.2);
}

.supply-product-img-wrapper {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
  background-color: #f0f4f8;
}

.supply-product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.supply-product-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.supply-video-trigger {
  cursor: pointer;
  position: relative;
}

.supply-video-trigger::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  z-index: 2;
  transition: background 0.3s ease;
}

.supply-video-trigger:hover::after {
  background: rgba(0,0,0,0.15);
}

.supply-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 64px;
  height: 64px;
  background: rgba(0, 101, 206, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  transition: transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.supply-video-trigger:hover .supply-video-play {
  transform: translate(-50%, -50%) scale(1.1);
  background: #0065CE;
}

.supply-video-play i {
  margin-left: 4px;
}

.supply-product-card:hover .supply-product-img-wrapper img {
  transform: scale(1.06);
}

.supply-product-body {
  padding: 1.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.supply-product-icon {
  width: 56px;
  height: 56px;
  background-color: rgba(0, 101, 206, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0065CE;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.supply-product-card:hover .supply-product-icon {
  background-color: #0065CE;
  color: #ffffff;
}

.supply-product-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.supply-product-specs {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.6;
  flex: 1;
}

.supply-product-specs strong {
  color: #1f2937;
}

.supply-product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
  padding: 0.7rem 1.5rem;
  background-color: #0065CE;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
  align-self: flex-start;
}

.supply-product-btn:hover {
  background-color: #0052a8;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .supply-products-grid {
    grid-template-columns: 1fr;
  }
}

/* Video Modal Styles */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.video-modal.active {
  opacity: 1;
  pointer-events: all;
}

.video-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(3, 13, 18, 0.95);
  backdrop-filter: blur(10px);
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  background-color: var(--dark-bg-2);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), var(--glow-cyan-strong);
  z-index: 10;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-modal.active .video-modal-content {
  transform: scale(1);
}

.video-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 15;
  transition: var(--transition);
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.video-modal-close:hover {
  color: var(--accent-cyan);
  transform: scale(1.1);
}

.video-responsive-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.video-responsive-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: contain;
}

/* ===== NAV DROPDOWN SERVICIOS ===== */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-dropdown-arrow {
  font-size: 0.7rem;
  transition: var(--transition);
}

.nav-dropdown.open .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 260px;
  background-color: rgba(5, 17, 23, 0.97);
  border: 1px solid rgba(245, 168, 0, 0.2);
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
  backdrop-filter: blur(15px);
  z-index: 200;
  padding: 0.5rem 0;
  overflow: hidden;
}

.nav-dropdown.open .nav-dropdown-menu {
  display: block;
  animation: dropdownFade 0.2s ease;
}

@keyframes dropdownFade {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  color: var(--graphite) !important;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.nav-dropdown-menu a:hover {
  background-color: rgba(245, 168, 0, 0.08);
  color: var(--accent-yellow) !important;
  border-left-color: var(--accent-yellow);
  padding-left: 1.5rem;
}

/* Nav CTA amarillo */
.nav-cta-btn {
  color: #0a0a0a !important;
}

/* ===== FAQ ACORDEÓN ===== */
.faq-section {
  background-color: #ffffff; /* Fondo blanco */
}

.faq-section .section-subtitle {
  color: #0065CE;
  background: transparent;
  border: none;
  padding: 0;
}

.faq-section .section-title {
  color: #111827; /* Título oscuro */
}

.faq-section .about-text {
  color: #4b5563; /* Subtítulo oscuro */
}

.faq-accordion {
  max-width: 860px;
  margin: 3.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: #f8fafc; /* Fondo grisáceo muy claro */
  border: 1px solid #e2e8f0; /* Borde sutil */
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.faq-item.open {
  border-color: rgba(245, 168, 0, 0.5); /* Borde amarillo al estar abierto */
  box-shadow: 0 4px 20px rgba(245, 168, 0, 0.08);
  background-color: #ffffff; /* Pasa a blanco puro al abrirse */
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.4rem 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  color: #1e293b; /* Texto oscuro */
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--accent-yellow-dark);
}

.faq-item.open .faq-question {
  color: var(--accent-yellow-dark);
}

.faq-icon {
  color: var(--accent-yellow-dark);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.35s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 1.8rem;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 1.8rem 1.5rem;
}

.faq-answer p {
  color: #4b5563; /* Texto de respuesta oscuro */
  font-size: 0.97rem;
  line-height: 1.7;
}

/* ===== FORMULARIO DE COTIZACIÓN ===== */
.quote-section {
  background: linear-gradient(135deg, var(--dark-bg-1) 0%, var(--dark-bg-2) 100%);
  border-top: 1px solid rgba(245, 168, 0, 0.15);
}

.quote-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: flex-start;
}

.quote-info .section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.quote-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}

.quote-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.quote-contact-item i {
  color: var(--accent-yellow);
  font-size: 1.4rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.quote-contact-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.qci-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-yellow);
  font-weight: 600;
}

.qci-value {
  font-size: 0.95rem;
  color: var(--graphite);
}

.quote-form-panel {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
  letter-spacing: 0.3px;
}

.phone-input-wrapper {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.phone-input-wrapper:focus-within {
  border-color: var(--accent-yellow);
  box-shadow: 0 0 0 3px rgba(245,168,0,0.12);
  background-color: #ffffff;
}

.country-flag {
  width: 20px;
  height: 14px;
  vertical-align: middle;
  border-radius: 2px;
  display: inline-block;
}

/* Country Selector */
.country-selector {
  position: relative;
  user-select: none;
}

.country-selector-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.75rem 0.75rem 0.75rem 1rem;
  font-size: 0.95rem;
  color: #111827;
  font-weight: 600;
  white-space: nowrap;
  border: none;
  border-right: 1px solid #d1d5db;
  background: none;
  cursor: pointer;
  transition: background-color 0.2s;
  font-family: var(--font-body);
}

.country-selector-toggle:hover {
  background-color: #f3f4f6;
}

.country-selector-toggle .country-flag {
  width: 22px;
  height: 15px;
  border-radius: 2px;
}

.country-selector-toggle i {
  font-size: 0.65rem;
  color: #6b7280;
  transition: transform 0.2s;
}

.country-selector.open .country-selector-toggle i {
  transform: rotate(180deg);
}

.country-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 280px;
  max-height: 300px;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  z-index: 1000;
  display: none;
  overflow: hidden;
  flex-direction: column;
}

.country-selector.open .country-dropdown {
  display: flex;
}

.country-search-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid #e5e7eb;
  background: #f9fafb;
}

.country-search-wrapper i {
  color: #9ca3af;
  font-size: 0.85rem;
}

.country-search {
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.9rem;
  color: #111827;
  font-family: var(--font-body);
  width: 100%;
}

.country-search::placeholder {
  color: #9ca3af;
}

.country-list {
  list-style: none;
  margin: 0;
  padding: 4px 0;
  overflow-y: auto;
  max-height: 240px;
}

.country-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #374151;
  transition: background-color 0.15s;
}

.country-list li:hover {
  background-color: #f3f4f6;
}

.country-list li.active {
  background-color: #eff6ff;
  color: var(--accent-cyan);
  font-weight: 600;
}

.country-list li .country-flag {
  width: 22px;
  height: 15px;
  border-radius: 2px;
  flex-shrink: 0;
}

.country-list li .country-name-cs {
  flex: 1;
}

.country-list li .country-dial-cs {
  color: #6b7280;
  font-weight: 500;
}

.country-list li.active .country-dial-cs {
  color: var(--accent-cyan);
}

.phone-input-wrapper input {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  flex: 1;
}

.form-group input,
.form-group select,
.form-group textarea {
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: #111827;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  width: 100%;
}

.form-group select option {
  background-color: #ffffff;
  color: #111827;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-yellow);
  box-shadow: 0 0 0 3px rgba(245,168,0,0.12);
  background-color: #ffffff;
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1rem;
  padding: 1rem;
  margin-top: 0.3rem;
}

.form-note {
  font-size: 0.78rem;
  color: #9ca3af;
  text-align: center;
  margin: 0;
}

@media (max-width: 900px) {
  .quote-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ===== WHATSAPP FLOTANTE ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9990;
  width: 58px;
  height: 58px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-float i {
  font-size: 1.9rem;
  color: #ffffff;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.65);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background-color: #1a1a1a;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  font-family: var(--font-body);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: #1a1a1a;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ===== RESPONSIVE INDICADORES ===== */
@media (max-width: 768px) {
  .indicators-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .indicator-text {
    font-size: 0.82rem;
  }
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-tooltip {
    display: none;
  }
  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-left: 2px solid rgba(245,168,0,0.3);
    border-radius: 0;
    margin-left: 1rem;
    padding: 0;
    background: transparent;
  }
  .faq-question {
    font-size: 0.93rem;
    padding: 1.2rem 1.2rem;
  }
  .faq-answer {
    padding: 0 1.2rem;
  }
  .faq-item.open .faq-answer {
    padding: 0 1.2rem 1.2rem;
  }
  .quote-form-panel {
    padding: 1.5rem;
  }
}
