/* ==========================================
   1. RESET & VARIABLES (Blue Edition)
   ========================================== */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Outfit:wght@400;500;700;800&display=swap');

:root {
  /* Core Palette */
  --color-navy: #020617;
  /* Darker, richer navy (Slate 950) */
  --color-black: #000000;
  --color-cyan: #00E5FF;
  /* Electric Cyan */
  --color-blue: #2979FF;
  --color-white: #ffffff;
  --color-gray-light: #cbd5e1;
  /* Slate 300 equivalent for better readability */
  --color-glass: rgba(2, 6, 23, 0.9);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;

  /* Spacing */
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;

  /* Effects */
  --shadow-glow: 0 0 25px rgba(0, 229, 255, 0.2);
  --border-glass: 1px solid rgba(255, 255, 255, 0.08);
  --gradient-text: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-blue) 100%);
  --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-navy);
  color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-white);
  line-height: 1.1;
  /* Tighter leading */
}

h1 {
  font-size: 3.5rem;
  /* lg:text-6xl equivalent */
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 3rem;
  /* text-5xl equivalent */
  letter-spacing: -0.02em;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

h3 {
  font-size: 1.875rem;
  /* text-3xl equivalent */
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
}

p {
  margin-bottom: 1.5rem;
  color: var(--color-gray-light);
  font-size: 1.125rem;
  /* text-lg equivalent */
  line-height: 1.75;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================
   2. UTILITIES & LAYOUT
   ========================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

.grid {
  display: grid;
  gap: var(--spacing-md);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-hero {
  grid-template-columns: minmax(auto, 1.4fr) 0.6fr;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.flex {
  display: flex;
  gap: var(--spacing-sm);
}

.flex-column {
  flex-direction: column;
}

.justify-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

.text-center {
  text-align: center;
}

.text-cyan {
  color: var(--color-cyan);
}

.text-primary {
  color: var(--color-cyan);
}

.bg-primary {
  background-color: var(--color-cyan);
}

.text-navy-deep {
  color: var(--color-white);
  /* Keep white on dark mode */
}

.text-slate-400 {
  color: var(--color-gray-light);
}

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

/* Grid Spans */
.col-span-2 {
  grid-column: span 2;
}

.row-span-2 {
  grid-row: span 2;
}

.bento-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.bento-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.bento-card:hover img {
  transform: scale(1.05);
}

.bento-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 2rem;
  z-index: 10;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

/* Animations */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.animate-scroll {
  animation: scroll 40s linear infinite;
}

.animate-pulse-slow {
  animation: pulse 3s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

/* Map Section */
.map-container {
  height: 500px;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.map-pin .pin-dot {
  width: 20px;
  height: 20px;
  background: var(--color-cyan);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--color-cyan);
  animation: pulse 2s infinite;
}

/* Value Prop Icons */
.check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.1);
  color: var(--color-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-top: 4px;
  flex-shrink: 0;
}

.mt-lg {
  margin-top: var(--spacing-lg);
}

/* ==========================================
   3. COMPONENTS
   ========================================== */
/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  /* Matches px-8 py-4 better */
  font-weight: 700;
  border-radius: 0.5rem;
  /* rounded-lg */
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  font-size: 0.9rem;
  min-height: 48px;
  /* Accessibility */
}

.btn-primary {
  background-color: var(--color-cyan);
  color: var(--color-navy);
  border: 2px solid var(--color-cyan);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background-color: var(--color-cyan);
  color: var(--color-navy);
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: rgba(255, 255, 255, 0.05);
  /* Slight fill */
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  background-color: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

/* Glass Cards */
.card-glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  border: var(--border-glass);
  padding: var(--spacing-md);
  border-radius: 12px;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.card-glass:hover {
  transform: translateY(-5px);
  border-color: var(--color-cyan);
  background: rgba(255, 255, 255, 0.05);
}

/* Icons container */
.icon-box {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.1);
  color: var(--color-cyan);
  margin-bottom: var(--spacing-sm);
  font-size: 1.5rem;
}

/* ==========================================
   4. SECTIONS
   ========================================== */
section {
  padding: var(--spacing-xl) 0;
  position: relative;
}

/* Header */
.main-header {
  position: absolute;
  /* No longer fixed */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  /* Optional: remove blur if "sin fondo" implies no glass effect users often mean just see-through */
  padding: 1rem 0;
  transition: background 0.3s ease, padding 0.3s ease;
}

.main-header:hover {
  background: rgba(2, 6, 23, 0.85);
  /* Premium dark overlay on hover */
}

/* Optional: Add background on scroll (would require JS), but for now sticking to static transparent as requested */

/* Main Header Container Override */
.main-header .container {
  max-width: 95%;
  /* Wider container for header only */
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo h1 {
  font-size: 1.8rem;
  color: var(--color-white);
  letter-spacing: -1px;
  margin: 0;
  white-space: nowrap;
  /* Prevent logo wrap */
}

/* Responsive Logo Image */
.nav-logo img {
  height: 90px;
  width: auto;
  transition: height 0.3s ease;
}

@media (min-width: 992px) {
  .nav-logo img {
    height: 90px;
  }
}

.nav-logo span {
  color: var(--color-cyan);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--spacing-md);
  align-items: center;
  margin-left: 3rem;
  /* Separation from logo */
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-white);
  position: relative;
  padding: 0.5rem 0;
  /* Add touch target area */
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-cyan);
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

/* Global Arrow Hide (Desktop) */
.dropdown-arrow {
  display: none;
}

/* Ensure entire area is clickable/hoverable on desktop */
.dropdown-header {
  display: flex;
  align-items: center;
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  /* Hidden by default */
  position: absolute;
  top: 100%;
  left: -1rem;
  /* Slight offset */
  background: rgba(2, 6, 23, 0.85);
  /* Premium dark overlay matching header hover */
  backdrop-filter: blur(10px);
  min-width: 280px;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  z-index: 1100;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown:hover .dropdown-menu {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-white);
  /* White text as requested */
  border-radius: 4px;
  transition: all 0.2s;
}

.dropdown-menu a:hover {
  background: rgba(0, 229, 255, 0.1);
  color: var(--color-cyan);
  padding-left: 1rem;
  /* Slight movement on hover */
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--color-white);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 800px;
  display: flex;
  /* Darker overlay on the left, fading to transparent on the right */
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.85) 0%, rgba(2, 6, 23, 0.8) 45%, rgba(2, 6, 23, 0.4) 100%), url('../img/hero-industrial.png');
  background-size: cover;
  background-position: center;
  padding-top: 150px;
  /* Adjusted for better balance */
  position: relative;
  align-items: flex-start;
  /* Force content to top, respecting padding */
  /* Force content to top, respecting padding */
}

.hero-spacer {
  padding-top: 150px !important;
  /* Ensure spacing applies */
}

.hero-content {
  max-width: 1000px;
  position: relative;
  z-index: 2;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 9999px;
  /* Full rounded */
  padding: 6px 16px;
  font-size: 0.75rem;
  /* text-xs */
  font-weight: 700;
  color: var(--color-cyan);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  /* tracking-widest */
  margin-bottom: 2rem;
}

.hero-pill::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--color-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-cyan);
  animation: pulse 2s infinite;
  /* Keep pulse animation */
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--color-gray-light);
  opacity: 0.7;
  animation: fadeIn 1s ease-out;
}

.hero h1 {
  line-height: 1.1;
  margin-bottom: 2.5rem;
}

.hero h2 {
  font-size: 1.25rem;
  max-width: 800px;
  margin-bottom: 2.5rem;
  color: #cbd5e1;
  font-weight: 400;
  line-height: 1.6;
}

.hero p {
  font-size: 1.25rem;
  max-width: 600px;
  margin-bottom: 2.5rem;
  color: #cbd5e1;
  /* Lighter slate for readability */
}

/* Trust Bar */
.trust-bar {
  padding: var(--spacing-md) 0;
  background: var(--color-black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-logos {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  opacity: 0.6;
  gap: 2rem;
}

.trust-logos img {
  filter: grayscale(100%);
  height: 40px;
}

/* Footer */
.main-footer {
  background: var(--color-black);
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.footer-bottom {
  margin-top: var(--spacing-lg);
  padding: var(--spacing-md) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #666;
}

/* Footer Links Hover */
.main-footer a,
.main-footer button.open-call-modal {
  transition: color 0.2s ease;
}

.main-footer a:hover,
.main-footer button.open-call-modal:hover {
  color: var(--color-cyan);
}

/* ==========================================
   5. RESPONSIVE
   ========================================== */
@media (max-width: 992px) {
  h1 {
    font-size: 3rem;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .col-span-2 {
    grid-column: span 1;
  }

  .row-span-2 {
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .grid-2,
  .grid-hero,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  /* Mobile Menu Button */
  .menu-toggle {
    display: block;
    font-size: 2.2rem;
    padding: 0;
    margin-right: 0;
    background: none;
    border: none;
    outline: none;
    /* Remove margin-right if aligning to edge */
    z-index: 1101;
    align-self: center;
    color: var(--color-white);
    cursor: pointer;
    margin-left: auto;
    /* Force to right */
  }

  .nav-menu {
    position: fixed;
    top: 0;
    /* Cover full height including header area if needed, or stick to below header */
    left: -100%;
    width: 100%;
    height: 100vh;
    /* Full screen */
    background: #020617;
    /* Solid Navy */
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5rem 2rem 2rem 2rem;
    /* Top padding to clear close button space */
    overflow-y: auto;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 0;
    z-index: 1000;
    gap: 0.5rem;
    /* Reduced gap between items */
  }

  /* Close button behavior  /* Mobile Menu Items (Dropdowns and Standard Links) */
  .nav-menu>li {
    width: 100%;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
    /* Maintain vertical rhythm */
    display: flex;
    flex-direction: column;
  }

  .nav-menu>li:last-child {
    border-bottom: none;
  }

  /* Header of dropdown (Link + Arrow) */
  .dropdown-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    /* Let children control vertical space */
  }

  .nav-link {
    font-size: 1.1rem;
    /* Bigger for touch */
    width: 100%;
    padding: 0;
    /* Remove vertical padding, rely on li container */
  }

  /* Show Arrow on Mobile */
  .dropdown-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    /* Larger touch target */
    height: 48px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    transition: all 0.2s;
    margin-left: 1rem;
  }

  .dropdown-arrow:active,
  .dropdown.active .dropdown-arrow {
    background: rgba(0, 229, 255, 0.1);
    color: var(--color-cyan);
    transform: rotate(180deg);
  }

  .dropdown-menu {
    position: static;
    float: none;
    display: none;
    /* Collapsed by default */
    width: 100%;
    background: rgba(4, 11, 36, 0.5);
    /* Slightly lighter background block */
    box-shadow: none;
    border: none;
    padding: 0;
    /* Let links define padding */
    margin-top: 0.5rem;
    border-radius: 4px;
    overflow: hidden;
    /* For radius */
  }

  .dropdown.active .dropdown-menu {
    display: flex;
    /* Expand */
    flex-direction: column;
    animation: fadeIn 0.3s ease;
  }

  .dropdown-menu li {
    width: 100%;
  }

  .dropdown-menu a {
    display: block;
    padding: 1rem 1.5rem;
    /* Generous touch target */
    font-size: 0.95rem;
    /* Readable subtext */
    color: #cbd5e1;
    /* Slate-300 */
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    /* Subtle item separator */
    background: transparent;
  }

  .dropdown-menu a:hover,
  .dropdown-menu a:active {
    background: rgba(0, 229, 255, 0.05);
    color: var(--color-cyan);
    padding-left: 2rem;
    /* Move effect */
  }

  .nav-menu.active {
    left: 0;
  }

  /* Mobile Grid Stacking */
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr !important;
    gap: var(--spacing-sm);
  }

  /* Hero Mobile */
  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 4rem;
    height: auto;
    /* Allow content to dictate height */
    text-align: left;
  }

  .hero .container {
    flex-direction: column-reverse;
    /* Image on top/middle, Text bottom */
  }

  .hero-content {
    margin-top: 2rem;
  }

  .hero .flex {
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-pill {
    margin-bottom: 1rem;
  }

  /* Bento Grid Mobile */
  .col-span-2,
  .row-span-2 {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }

  .bento-card {
    min-height: 250px;
    /* Ensure visibility */
  }

  /* Map & Value Prop Mobile */
  section {
    padding: var(--spacing-lg) 0;
  }

  .map-container {
    height: 300px;
    margin-top: 2rem;
  }

  /* Value Prop Reverse */
  .value-prop .grid-2 {
    display: flex;
    flex-direction: column-reverse;
  }

  /* Trust Bar Mobile */
  .trust-bar {
    padding: 1.5rem 0;
  }

  .trust-logos {
    gap: 2rem;
  }

  .trust-logos div {
    font-size: 1.2rem !important;
  }

  /* Typography */
  p {
    font-size: 0.95rem;
  }

  .btn {
    width: 100%;
    /* Full width buttons */
  }

  /* Footer Mobile */
  .main-footer .grid-4 {
    gap: 2rem;
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ==========================================
   6. CONVERSION TOOLS (RAPTOR MARKETER)
   ========================================== */

/* --- WhatsApp Button --- */
.btn-floating-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  background-color: rgba(14, 26, 53, 0.95);
  border: 1px solid var(--color-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 229, 255, 0.25);
  z-index: 2000;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: wa-float 4s ease-in-out infinite;
}

.btn-floating-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 28px rgba(0, 229, 255, 0.45);
}

@keyframes wa-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* --- Call Button (Mobile Only) --- */
.btn-floating-call {
  display: none;
  position: fixed;
  bottom: 30px;
  left: 20px;
  width: 60px;
  height: 60px;
  background-color: var(--color-navy);
  color: var(--color-cyan);
  border: 2px solid var(--color-cyan);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
  z-index: 1000;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.btn-floating-call:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .btn-floating-call {
    display: flex;
  }

  .btn-floating-wa {
    bottom: 30px;
    right: 20px;
    width: 60px;
    height: 60px;
  }
}

/* --- Modals (Shared Styles) --- */
.wa-modal,
.call-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2100;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
}

.wa-modal.active,
.call-modal.active {
  display: flex;
}

.wa-modal-content,
.call-modal-content {
  background: rgba(14, 26, 53, 0.95);
  border: 1px solid var(--color-cyan);
  padding: 2rem;
  border-radius: 16px;
  width: 90%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.2);
  animation: fadeIn 0.3s ease-out;
  text-align: center;
  color: white;
}

.wa-modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-cyan);
}

.wa-modal-content h3,
.call-modal-content h3 {
  color: var(--color-cyan);
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-gray-light);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--color-cyan);
  color: white;
  border-radius: 6px;
}

.form-group select option {
  background: var(--color-navy);
}

.btn-submit,
.btn-call-confirm {
  width: 100%;
  padding: 1rem;
  background: var(--color-cyan);
  color: var(--color-navy);
  border: none;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 1rem;
  text-transform: uppercase;
}

.btn-call-cancel {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 100%;
  padding: 0.8rem;
  border-radius: 6px;
  margin-top: 0.5rem;
  cursor: pointer;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================
   6. ACCESIBILIDAD 100 PAGESPEED
   ========================================== */

/* Focus Visible para navegación por teclado */
button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--color-cyan);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.5);
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--color-navy);
  color: var(--color-white);
  padding: 12px 20px;
  text-decoration: none;
  font-weight: bold;
  z-index: 10000;
  transition: top 0.3s ease;
  border: 2px solid var(--color-cyan);
}

.skip-link:focus {
  top: 0;
  outline: 3px solid var(--color-white);
  outline-offset: 2px;
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .bento-card:hover {
    transform: none;
  }

  .bento-card:hover img {
    transform: none;
  }

  .ano-exp:hover,
  .btn-primary:hover,
  .btn-outline:hover,
  .card-glass:hover {
    transform: none;
  }
}