@charset "UTF-8";
/* ======== ESTILOS GENERALES Y RESET ======== */
:root {
  --header-height: 110px; /* Altura del header expandido al inicio */
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", sans-serif;
  line-height: 1.7;
  background-color: #E2E7ED;
  color: #1a1a1a;
  overflow-x: hidden;
}

.container {
  max-width: 95%;
  margin: 0 auto;
  padding: 0;
}

header {
  background-color: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  padding: 1.8rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.4s ease;
}
header.scrolled {
  background-color: var(--bg-header-scrolled);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  padding: 0.75rem 0;
  border-bottom-color: rgba(0, 0, 0, 0.05);
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--header-text);
  text-decoration: none;
}
header ul {
  display: flex;
  list-style: none;
  gap: 20px;
}
header ul li {
  margin-left: 15px;
  position: relative;
  will-change: transform, opacity;
}
header ul li a {
  transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
  position: relative;
  padding: 10px 0;
  font-weight: 600;
  color: var(--header-text);
  text-decoration: none;
  outline: none !important;
  border: none !important;
  background-color: transparent;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  display: inline-block;
  will-change: transform;
}
header ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--header-text);
  transition: all 0.3s cubic-bezier(0.2, 1, 0.3, 1);
  transform: translateX(-50%);
}
header ul li a:hover {
  color: var(--header-text);
}
header ul li a:hover::after {
  width: 100%;
}
header ul li a.active {
  color: var(--header-text);
}
header ul li a.active::after {
  width: 100%;
}
header ul li a:active {
  transform: scale(0.96);
}
header .cotizarbt {
  will-change: transform, opacity;
}
header .cotizarbt button {
  position: relative;
  height: 3rem;
  padding: 0 2rem;
  border-radius: 1.5rem;
  background-color: var(--btn-primary);
  color: var(--btn-text);
  border: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 510;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
header .cotizarbt button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  filter: brightness(1.1);
}
header .cotizarbt button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
header .cotizarbt button .button-content {
  position: relative;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

h1,
h2,
h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  position: relative;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: #1a1a1a;
}

a {
  text-decoration: none;
  color: #1a1a1a;
}

/* ======== SISTEMA DE ANIMACIÓN EN CASCADA ======== */
/* PASO 1: Oculta los elementos que se van a animar. */
#hero .fade-in-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* PASO 2: Muestra los elementos cuando JavaScript añade la clase .visible. */
#hero .fade-in-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======== SECCIÓN HERO (CORREGIDA Y ESTILIZADA) ======== */
#hero {
  height: 100vh;
  padding-top: var(--header-height);
  text-align: center;
  position: relative;
  background-color: #0A1E2A;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-primary);
}

/* ======== VIDEO DE FONDO HERO ======== */
.hero-video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 49, 67, 0.58);
}

#hero .container {
  position: relative;
  z-index: 1;
}

/* Texto blanco sobre el video */
#hero h1 span,
#hero p {
  color: #ffffff;
}
#hero .btn {
  border-color: rgba(255, 255, 255, 0.85);
  color: #ffffff;
}
#hero .btn::before {
  background: rgba(255, 255, 255, 0.15);
}
#hero .btn:hover {
  color: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

/* REGLA AÑADIDA: Define el tamaño grande y el margen para el título principal. */
#hero h1 {
  font-size: 3.5rem;
  /* <-- AJUSTA ESTE VALOR A TU GUSTO (ej: 4rem) */
  margin: 0 auto 2rem auto;
}

/* REGLA AÑADIDA: Asegura que cada <span> ocupe una línea separada. */
#hero h1 span {
  display: block;
}

#hero p {
  font-size: 1.5rem;
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

/* ======== SECCIONES ======== */
section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E2E7ED;
  position: relative;
  scroll-margin-top: var(--header-height);
  overflow: hidden;
}
section:not(#hero)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
  z-index: 10;
}

/* ======== NOSOTROS ======== */
#nosotros {
  background-color: #E2E7ED;
  height: auto;
  padding: 5rem 0;
}
#nosotros .container {
  max-width: 800px;
  max-height: 100%;
  text-align: center;
}
#nosotros h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #1a1a1a, #888);
  border-radius: 2px;
}

/* ======== SUBTLE ANIMATIONS ======== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======== EXTRA TOUCHES ======== */
/* Selection color */
::selection {
  background: #1a1a1a;
  color: #ffffff;
}

button {
  appearance: none;
  background-color: transparent;
  border: 0.125em solid #1A1A1A;
  border-radius: 0.9375em;
  box-sizing: border-box;
  color: #3B3B3B;
  cursor: pointer;
  display: inline-block;
  font-weight: 700;
  line-height: normal;
  margin: 0;
  min-height: 3.3em;
  min-width: 0;
  outline: none;
  padding: 1em 2.3em;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  will-change: transform;
}

button:disabled {
  pointer-events: none;
}

button:hover {
  color: #fff;
  background-color: #1A1A1A;
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
}

button:active {
  box-shadow: none;
  transform: translateY(0);
}

/* ======== BOTONES ======== */
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  border: 2px solid #1a1a1a;
  border-radius: 5px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  transition: left 0.4s ease;
  z-index: -1;
}
.btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 26, 26, 0.2);
}
.btn:hover::before {
  left: 0;
}
.btn:focus {
  outline: none;
}

.btn-light {
  border-color: #ffffff;
  color: #ffffff;
}
.btn-light::before {
  background: #ffffff;
}
.btn-light:hover {
  color: #1a1a1a;
}

/* ======== CONTACTO ======== */
#contacto {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-contact);
  color: #fafafa;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#contacto::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="0.5" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.3" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}
#contacto .container {
  position: relative;
  z-index: 1;
}
#contacto h2,
#contacto p {
  color: var(--text-on-contact);
}
#contacto h2 {
  position: relative;
}
#contacto h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, #888);
  border-radius: 2px;
}
#contacto .btn-light {
  animation: pulse 2s infinite;
}

/* ======== FOOTER (WORDPRESS STYLE) ======== */
footer {
  background-color: var(--bg-header-scrolled);
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 0;
  color: var(--header-text);
  transition: all 0.3s ease;
}
footer .footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 1.5rem;
}
footer .footer-col h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  color: #ffffff;
}
footer .footer-col h4::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--btn-primary);
}
footer .footer-col p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1rem;
  font-weight: 300;
}
footer .footer-col ul {
  list-style: none;
  padding: 0;
}
footer .footer-col ul li {
  margin-bottom: 0.8rem;
}
footer .footer-col ul li a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 300;
}
footer .footer-col ul li a:hover {
  color: var(--btn-primary);
  padding-left: 5px;
}
footer .footer-col.brand-col .logo {
  margin-bottom: 1.5rem;
  display: inline-flex;
}
footer .footer-col .social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
footer .footer-col .social-links a {
  width: 35px;
  height: 35px;
  background: rgba(10, 49, 67, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.8rem;
  color: #0A3143;
  border: 1px solid rgba(10, 49, 67, 0.2);
  transition: all 0.3s ease;
}
footer .footer-col .social-links a:hover {
  background: var(--btn-primary);
  color: #fff;
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom .copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Responsive Footer */
@media (max-width: 992px) {
  footer .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  footer .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@keyframes pestanitaWobble {
  0% {
    transform: rotate(15deg) scale(1);
  }
  25% {
    transform: rotate(10deg) scale(1.1);
  }
  50% {
    transform: rotate(20deg) scale(1.1);
  }
  75% {
    transform: rotate(12deg) scale(1.1);
  }
  100% {
    transform: rotate(15deg) scale(1);
  }
}
/* ======== HAMBURGER ======== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Dark mode — hamburger + menú */
body.dark-mode .hamburger span {
  background: var(--text-primary);
}
@media (max-width: 768px) {
  body.dark-mode #navMenu {
    background: rgba(10, 10, 10, 0.97);
  }
  body.dark-mode #navMenu li a {
    color: rgba(255, 255, 255, 0.7);
    border-bottom-color: rgba(255, 255, 255, 0.05);
  }
  body.dark-mode #navMenu li a:hover {
    color: var(--accent);
  }
}

/* Animación items del menú */
#navMenu li {
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
#navMenu.open li:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.08s; }
#navMenu.open li:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.14s; }
#navMenu.open li:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.20s; }
#navMenu.open li:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.26s; }

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

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  #servicios .servicios-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1024px) {
  .proceso-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .planesSwiper .swiper-wrapper {
    padding: 0 1.5rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  /* Header hamburguesa */
  .hamburger { display: flex; }
  header .cotizarbt { display: none; }

  header .container {
    padding: 0 1.2rem;
    height: 70px;
  }

  #navMenu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(280px, 80vw);
    height: 100vh;
    background: rgba(10, 49, 67, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    padding: 5rem 2.5rem 2.5rem;
    margin: 0;
    transition: right 0.35s cubic-bezier(0.2, 1, 0.3, 1);
    z-index: 1050;
  }
  #navMenu.open { right: 0; }
  #navMenu li { margin: 0; width: 100%; }
  #navMenu li a {
    display: block;
    font-size: 1.2rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
  }
  #navMenu li:last-child a { border-bottom: none; }
  #navMenu li a:hover { color: #fff; padding-left: 0.5rem; }

  /* Overlay oscuro al abrir */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1040;
  }
  .nav-overlay.open { display: block; }

  /* Hero */
  #hero { padding-top: 7rem; }
  #hero h1 { font-size: 1.8rem; margin-bottom: 1rem; }
  #hero p { font-size: 1.05rem; }

  /* Secciones */
  section { padding: 3.5rem 0; }
  .container { padding: 0 1rem; }

  /* Servicios — carousel scroll en mobile */
  #servicios .servicios-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 1rem 5vw 1.5rem;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    box-sizing: border-box;
  }
  #servicios .servicios-grid::-webkit-scrollbar { display: none; }
  #servicios .servicio-card {
    flex: 0 0 82vw;
    max-width: 320px;
    scroll-snap-align: center;
    padding: 1.4rem;
    transform: none !important;
    transition: none;
  }

  /* Proceso */
  .proceso-grid { grid-template-columns: 1fr; }
  .step-number { font-size: 3rem; }

  /* Planes carrusel */
  .planesSwiper {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden !important;
  }
  .planesSwiper .swiper-slide { width: 82vw; max-width: 300px; }
  .planesSwiper .swiper-button-next,
  .planesSwiper .swiper-button-prev { display: none; }
  .plan-card-header { padding: 1.2rem 1.2rem 1rem; }
  .plan-card-body { padding: 1rem 1.2rem 1.2rem; }
  .plan-precio strong { font-size: 1.4rem; }

  /* Formulario */
  .form-container { padding: 24px 18px; }

  /* FAQ */
  .faq-lista { gap: 0; }

  /* Proyectos */
  .proy-head h2 { font-size: 1.6rem; }

  /* Footer */
  footer .footer-content { gap: 2rem; }

  /* Flotantes — no se encimen */
  .whatsapp-float { bottom: 20px; left: 16px; width: 46px; height: 46px; }
  .theme-toggle-container { bottom: 20px; right: 16px; }
}

/* Mobile pequeño */
@media (max-width: 480px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.4rem; }
  #hero h1 { font-size: 1.55rem; }
  #hero p { font-size: 0.95rem; }
  .planesSwiper .swiper-slide { width: 78vw; max-width: 260px; }
  .proy-head { padding: 0 12px 2rem; }
}
/* ======== SERVICIOS ======== */
#servicios {
  background-color: #E2E7ED;
}
#servicios h2 {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}
#servicios h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #1a1a1a, #888);
  border-radius: 2px;
}
#servicios .servicios-grid {
  gap: 1.2rem;
  margin-top: 2rem;
  align-items: stretch;
}
#servicios .servicio-card {
  background: rgba(10, 49, 67, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 1.4rem 1.6rem;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.2, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  color: #fff;
}
#servicios .servicio-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transition: left 0.6s ease;
}
#servicios .servicio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(10, 49, 67, 0.3);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(10, 49, 67, 0.92);
}
#servicios .servicio-card:hover::before {
  left: 100%;
}
#servicios .servicio-card h3 {
  color: #fff;
  transition: color 0.3s ease;
}
#servicios .servicio-card p {
  color: rgba(255, 255, 255, 0.75);
}
#servicios .servicio-card:nth-child(1) {
  animation-delay: 0.1s;
}
#servicios .servicio-card:nth-child(2) {
  animation-delay: 0.2s;
}
#servicios .servicio-card:nth-child(3) {
  animation-delay: 0.3s;
}

/* ======== PROCESO ======== */
#proceso {
  background-color: #D4DBE4;
  height: auto;
  padding: 5rem 0;
}
#proceso h2 {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}
#proceso h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #1a1a1a, #888);
  border-radius: 2px;
}
.proceso-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.proceso-step {
  text-align: center;
  padding: 1.5rem;
}
.step-number {
  font-family: "Montserrat", sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: rgba(10, 49, 67, 0.07);
  display: block;
  line-height: 1;
  margin-bottom: 1rem;
}
.proceso-step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
}
.proceso-step p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}
body.dark-mode #proceso {
  background-color: var(--bg-secondary);
}
body.dark-mode .step-number {
  color: rgba(255, 255, 255, 0.05);
}
body.dark-mode .proceso-step h3 {
  color: var(--text-primary);
}
body.dark-mode .proceso-step p {
  color: var(--text-secondary);
}
@media (max-width: 768px) {
  .proceso-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ======== PROJECT TAGS ======== */
.proyecto-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--btn-primary);
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

/* ======== SERVICIOS: 4 columnas + incluye ======== */
#servicios {
  height: auto;
  padding: 4rem 0 3rem;
  align-items: flex-start;
}
@media (min-width: 769px) {
  #servicios .servicios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  #servicios .servicios-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.incluye-wrapper {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid #e8e8e8;
  text-align: center;
}
.incluye-titulo {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 1.5rem;
}
.incluye-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.2rem;
}
.incluye-item {
  font-size: 0.85rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.incluye-item::before {
  content: "✓";
  color: #276E90;
  font-weight: 700;
  font-size: 0.75rem;
}
body.dark-mode .incluye-wrapper {
  border-top-color: rgba(255,255,255,0.06);
}
body.dark-mode .incluye-item {
  color: var(--text-secondary);
}
body.dark-mode .incluye-item::before {
  color: var(--btn-primary);
}

/* ======== FAQ ======== */
#faq {
  background-color: #D4DBE4;
  height: auto;
  padding: 4rem 0 3rem;
  align-items: flex-start;
}
#faq h2 {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}
#faq h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #0A3143, #276E90);
  border-radius: 2px;
}
.faq-lista {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 4rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .faq-lista {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.faq-item {
  border-bottom: 1px solid #e8e8e8;
}
.faq-item summary {
  list-style: none;
  padding: 1.4rem 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #1a1a1a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  color: #276E90;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover {
  color: #0A3143;
}
.faq-item p {
  padding: 0 0 1.4rem;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
  animation: faqOpen 0.3s ease;
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
body.dark-mode #faq {
  background-color: var(--bg-secondary);
}
body.dark-mode .faq-item {
  border-bottom-color: rgba(255,255,255,0.06);
}
body.dark-mode .faq-item summary {
  color: var(--text-primary);
}
body.dark-mode .faq-item summary:hover {
  color: var(--btn-primary);
}
body.dark-mode .faq-item summary::after {
  color: var(--btn-primary);
}
body.dark-mode .faq-item p {
  color: var(--text-secondary);
}

/* ======== PLANES ======== */
#planes {
  background-color: #E2E7ED;
  height: auto;
  padding: 4rem 0 3rem;
  align-items: flex-start;
  overflow-x: hidden;
  overflow-y: visible;
}
#planes h2 {
  text-align: center;
  margin-bottom: 0.75rem;
  position: relative;
}
#planes h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #0A3143, #276E90);
  border-radius: 2px;
}
.planes-subtitulo {
  text-align: center;
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 3rem;
}
.planesSwiper {
  width: 100%;
  padding: 2rem 0 3.5rem;
  overflow: visible !important;
}
.planesSwiper .swiper-slide {
  width: 300px;
  height: auto;
}
.planesSwiper .swiper-wrapper {
  align-items: stretch;
}
.planesSwiper .swiper-pagination-bullet {
  background: #0A3143;
}
.planesSwiper .plan-card {
  height: 100%;
}

/* ---- CARD BASE ---- */
.plan-card {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  background: #0A3143;
  overflow: hidden;
}

/* Franja de color arriba */
.plan-card::before {
  content: "";
  display: block;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* Zona header */
.plan-card-header {
  padding: 1.5rem 1.5rem 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* Zona features */
.plan-card-body {
  padding: 1.2rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.8rem;
}

.plan-card:hover {
  border-color: rgba(39, 110, 144, 0.5);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  transform: translateY(-5px);
}

/* Destacado */
.plan-destacado {
  border-color: #276E90;
  box-shadow: 0 0 0 1px #276E90, 0 12px 35px rgba(39, 110, 144, 0.3);
  background: #0c2033;
}
.plan-destacado::before {
  background: linear-gradient(90deg, #276E90, #3a9cc7);
}

/* Express */
.plan-express::before {
  background: #c17f24;
}
.plan-express {
  border-color: rgba(193, 127, 36, 0.4);
  background: #12131a;
}
.plan-express:hover {
  border-color: #c17f24;
  box-shadow: 0 12px 35px rgba(193, 127, 36, 0.2);
}
.plan-express .plan-card ul li::before { color: #c17f24; }
.plan-express .btn-plan:hover { background: #c17f24; border-color: #c17f24; }

/* Badge */
.plan-badge {
  display: inline-block;
  margin-bottom: 0.6rem;
  background: rgba(39, 110, 144, 0.2);
  color: #7dc8e8;
  font-size: 0.62rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(39, 110, 144, 0.4);
  white-space: nowrap;
}
.plan-badge-express {
  background: rgba(193, 127, 36, 0.2);
  color: #e8a94a;
  border-color: rgba(193, 127, 36, 0.4);
}

.plan-nombre {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffffff;
  display: block;
  margin-bottom: 0.25rem;
}

.plan-ideal {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  margin-bottom: 0.8rem;
}

.plan-precio {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}
.plan-precio span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
}
.plan-precio strong {
  font-family: "Montserrat", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.plan-card ul li {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.65);
  padding: 0.35rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.plan-card ul li::before {
  content: "✓";
  color: #276E90;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.plan-ideal-tag {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.btn-plan {
  display: block;
  text-align: center;
  padding: 0.65rem 1rem;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.25s ease;
  margin-top: auto;
}
.btn-plan:hover {
  background: #276E90;
  border-color: #276E90;
  color: #fff;
}
.plan-destacado .btn-plan {
  background: #276E90;
  border-color: #276E90;
  color: #fff;
}
.plan-destacado .btn-plan:hover {
  background: #1a5a7a;
  border-color: #1a5a7a;
}
body.dark-mode #planes {
  background-color: var(--bg-primary);
}
body.dark-mode .plan-card {
  background: var(--card-bg);
  border-color: rgba(255,255,255,0.06);
}
body.dark-mode .plan-card:hover {
  border-color: var(--btn-primary);
}
body.dark-mode .plan-destacado {
  border-color: var(--btn-primary);
}
body.dark-mode .plan-nombre {
  color: var(--text-primary);
}
body.dark-mode .plan-precio strong {
  color: var(--btn-primary);
}
body.dark-mode .plan-card ul li {
  color: var(--text-secondary);
  border-bottom-color: rgba(255,255,255,0.04);
}
body.dark-mode .plan-card ul li::before {
  color: var(--btn-primary);
}
body.dark-mode .btn-plan {
  border-color: var(--btn-primary);
  color: var(--btn-primary);
}
body.dark-mode .btn-plan:hover {
  background: var(--btn-primary);
  color: #fff;
}
body.dark-mode .plan-destacado .btn-plan {
  background: var(--btn-primary);
  border-color: var(--btn-primary);
  color: #fff;
}
body.dark-mode .plan-destacado .btn-plan:hover {
  background: #c0392b;
  border-color: #c0392b;
}
body.dark-mode .plan-badge {
  background: var(--btn-primary);
}
@media (max-width: 1200px) {
  .planes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .planes-grid,
  .planes-adicionales {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .planes-grid,
  .planes-adicionales {
    grid-template-columns: 1fr;
  }
}

/* ======== SCROLL INDICATOR ======== */
.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #0A3143, #276E90);
  z-index: 1001;
  transition: width 0.3s ease;
}

/* ======== PROJECTS SECTION ======== */
#proyectos {
  padding: 0;
  background-color: #D4DBE4;
  overflow: hidden;
}
#proyectos h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-top: -3rem;
  margin-bottom: 1rem;
}
#proyectos h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #1a1a1a, #888);
  border-radius: 2px;
}

.swiper.myProyectosSwiper {
  width: 100%;
  padding: 0 0 3rem;
  overflow: visible;
}
.swiper.myProyectosSwiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  transition: all 0.3s ease;
  background: #000;
}
.swiper.myProyectosSwiper .swiper-pagination-bullet-active {
  width: 20px;
  border-radius: 4px;
}

.swiper-slide.proyecto-card {
  width: 80vw;
  max-width: 850px;
  opacity: 0.2;
  transition: all 0.6s ease;
  transform: scale(0.85);
  display: flex;
  justify-content: center;
}
.swiper-slide.proyecto-card.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}
.swiper-slide.proyecto-card .proyecto-inner {
  display: flex;
  flex-direction: row;
  width: 100%;
  background: #E2E7ED;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  min-height: 350px;
}

.swiper.myImagesSwiper {
  width: 55%;
  height: auto;
  position: relative;
}
.swiper.myImagesSwiper .img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  background: #eee;
}

.proyecto-content {
  width: 45%;
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.proyecto-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #111;
}
.proyecto-content p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 2rem;
}
.proyecto-content .btn-text {
  text-decoration: none;
  color: #000;
  font-weight: 700;
  border-bottom: 2px solid #000;
  align-self: flex-start;
}

/* Flechas */
.swiper-button-next,
.swiper-button-prev {
  width: 3rem;
  height: 3rem;
  background: #E2E7ED;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.2rem;
  color: #000;
}

@media (max-width: 900px) {
  .swiper-slide.proyecto-card {
    width: 90%;
  }
  .swiper-slide.proyecto-card .proyecto-inner {
    flex-direction: column;
  }
  .swiper-slide.proyecto-card .swiper.myImagesSwiper,
  .swiper-slide.proyecto-card .proyecto-content {
    width: 100%;
  }
  .swiper-slide.proyecto-card .swiper.myImagesSwiper .img-placeholder {
    min-height: 250px;
  }
}
.plan-ideal {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
  margin-top: -0.5rem;
}

.contacto-subtitulo {
  text-align: center;
  color: var(--text-on-contact);
  opacity: 0.6;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  margin-top: -0.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ======== CUSTOM SELECT DROPDOWN ======== */
.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.25s ease;
  backdrop-filter: blur(4px);
  user-select: none;
}

.custom-select-trigger.has-value {
  color: #fff;
}

.custom-select-trigger:hover,
.custom-select-trigger.open {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
}

.custom-select-trigger .cs-arrow {
  flex-shrink: 0;
  opacity: 0.6;
  transition: transform 0.3s cubic-bezier(0.2, 1, 0.3, 1);
}

.custom-select-trigger.open .cs-arrow {
  transform: rotate(180deg);
}

.custom-select-options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: rgba(8, 38, 52, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  overflow: hidden;
  z-index: 200;
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.2, 1, 0.3, 1);
}

.custom-select-options.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.custom-option {
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.custom-option:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.custom-option.selected {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

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

.form-container {
  background: var(--bg-form-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 40px;
  width: 100%;
  box-shadow: 0 20px 40px rgba(10, 49, 67, 0.15);
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 20px;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.2s ease;
  outline: none;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
}

input::placeholder,
textarea::placeholder,
input[type=tel]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

textarea {
  min-height: 50px;
  resize: horizontal;
}

.submit-btn {
  width: 100%;
  background: #E2E7ED;
  color: #000;
  border: none;
  padding: 14px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.submit-btn:hover {
  background: #f5f5f5;
  transform: translateY(-1px);
}

.submit-btn:active {
  transform: translateY(0);
}

/* ======== PREMIUM DARK MODE SYSTEM - BLACK & RED ACCENTS (RESTORED) ======== */
:root {
  --bg-primary: #E2E7ED;
  --bg-secondary: #D4DBE4;
  --bg-header: rgba(10, 49, 67, 0.75);
  --bg-header-scrolled: rgba(10, 49, 67, 0.85);
  --header-text: #ffffff;
  --text-primary: #0A3143;
  --text-secondary: #276E90;
  --border-color: rgba(10, 49, 67, 0.1);
  --card-bg: #ffffff;
  --input-bg: rgba(206, 207, 201, 0.2);
  --btn-primary: #276E90;
  --btn-text: #ffffff;
  --accent: #0A3143;
  --bg-contact: #fafafa;
  --bg-form-card: rgba(10, 49, 67, 0.75);
  --text-on-contact: #0A3143;
}

body.dark-mode {
  --bg-primary: #0a0a0a;
  --bg-secondary: #141414;
  --bg-header: rgba(10, 10, 10, 0.85);
  --bg-header-scrolled: rgba(10, 10, 10, 0.95);
  --header-text: #f5f5f5;
  --text-primary: #f5f5f5;
  --text-secondary: #a0a0a0;
  --border-color: rgba(238, 69, 64, 0.15);
  --card-bg: #111111;
  --input-bg: rgba(255, 255, 255, 0.02);
  --btn-primary: #ee4540;
  --btn-text: #ffffff;
  --accent: #ee4540;
  --bg-contact: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  --bg-form-card: rgba(255, 255, 255, 0.08);
  --text-on-contact: #ffffff;
  background-color: var(--bg-primary);
  color: var(--text-primary);
}
body.dark-mode #hero {
  background: radial-gradient(circle at 20% 80%, rgba(238, 69, 64, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(199, 44, 65, 0.02) 0%, transparent 50%), var(--bg-primary);
}
body.dark-mode #nosotros,
body.dark-mode #servicios {
  background: var(--bg-primary);
}
body.dark-mode #proyectos {
  background: var(--bg-secondary);
}
body.dark-mode .proyecto-inner,
body.dark-mode .servicio-card {
  background: var(--card-bg) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.03) !important;
  border-bottom: 2px solid var(--border-color) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6) !important;
}
body.dark-mode .proyecto-content h3,
body.dark-mode .servicio-card h3 {
  color: var(--text-primary);
}
body.dark-mode .proyecto-content p,
body.dark-mode .servicio-card p {
  color: var(--text-secondary);
}
body.dark-mode .btn {
  border-color: var(--accent);
  color: var(--text-primary);
}
body.dark-mode .btn::before {
  background: var(--accent);
}
body.dark-mode .btn:hover {
  color: #fff;
  box-shadow: 0 0 15px rgba(238, 69, 64, 0.2);
}
body.dark-mode header {
  background-color: transparent !important;
  border-bottom-color: transparent !important;
}
body.dark-mode header.scrolled {
  background-color: var(--bg-header-scrolled);
  border-bottom-color: rgba(255, 255, 255, 0.05);
}
body.dark-mode header .logo span,
body.dark-mode header ul li a {
  color: #fff;
}
body.dark-mode header ul li a:hover,
body.dark-mode header ul li a.active {
  background-color: transparent;
  color: var(--accent);
}
body.dark-mode input,
body.dark-mode textarea {
  background: #0f0f0f !important;
  border-color: rgba(255, 255, 255, 0.05) !important;
  color: #fff !important;
}
body.dark-mode input:focus,
body.dark-mode textarea:focus {
  border-color: var(--accent) !important;
}
body.dark-mode .custom-select-trigger {
  background: #0f0f0f;
  border-color: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.5);
}
body.dark-mode .custom-select-trigger.has-value {
  color: #fff;
}
body.dark-mode .custom-select-trigger:hover,
body.dark-mode .custom-select-trigger.open {
  border-color: var(--accent);
  background: #141414;
}
body.dark-mode .custom-select-options {
  background: rgba(15, 15, 15, 0.97);
  border-color: rgba(255, 255, 255, 0.06);
}
body.dark-mode .custom-option {
  color: rgba(255, 255, 255, 0.6);
}
body.dark-mode .custom-option:hover {
  background: rgba(238, 69, 64, 0.1);
  color: #fff;
}
body.dark-mode .custom-option.selected {
  background: rgba(238, 69, 64, 0.08);
  color: #fff;
}
body.dark-mode footer {
  background-color: #050505;
  border-top-color: rgba(255, 255, 255, 0.05);
}
body.dark-mode footer h4 {
  color: var(--text-primary);
}
body.dark-mode footer p {
  color: var(--text-secondary);
}
body.dark-mode footer .footer-bottom {
  background: #000;
  border-top-color: rgba(255, 255, 255, 0.03);
}
body.dark-mode footer .footer-col .social-links a {
  background: #111;
  border-color: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}
body.dark-mode footer .footer-col .social-links a:hover {
  background: var(--btn-primary);
  color: #fff;
}
body.dark-mode {
  /* Section Separators */
}

/* Underlines de títulos en dark mode */
body.dark-mode #servicios h2::after,
body.dark-mode #proceso h2::after,
body.dark-mode #planes h2::after,
body.dark-mode #faq h2::after,
body.dark-mode #contacto h2::after,
body.dark-mode #nosotros h2::after {
  background: linear-gradient(90deg, #555, #888);
}

body.dark-mode section:not(#hero)::before {
  background: linear-gradient(90deg, transparent, rgba(238, 69, 64, 0.2), transparent) !important;
}

/* ======== WHATSAPP FLOTANTE ======== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 52px;
  height: 52px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

/* ======== MINIMALIST FLOATING TOGGLE SLIDER ======== */
.theme-toggle-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 6px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 60px;
  height: 32px;
}
.theme-toggle-container .toggle-thumb {
  width: 20px;
  height: 20px;
  background: #1a1a1a;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(0);
}

body.dark-mode .theme-toggle-container {
  background: rgba(0, 0, 0, 0.6);
  border-color: rgba(238, 69, 64, 0.2);
}
body.dark-mode .theme-toggle-container .toggle-thumb {
  transform: translateX(28px);
  background: #ee4540;
  box-shadow: 0 0 10px rgba(238, 69, 64, 0.4);
}

/*# sourceMappingURL=styles.css.map */
