/* ==== GENERAL ==== */
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #000;
  color: #fff;
}

/* ==== BOTÓN FLOTANTE WHATSAPP ==== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;       /* 🔹 Altura desde abajo */
  right: 20px;        /* 🔹 Distancia del borde derecho */
  z-index: 2000;
  background: #25D366;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1); /* 🔹 Blanco */
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

/* 📱 Ajuste móvil */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 45px;
    height: 45px;
    bottom: 15px;
    right: 15px;
  }
  .whatsapp-float img {
    width: 24px;
    height: 24px;
  }
}

.divider { width: 100%; height: 20px; background-color: #111; }

/* ==== HEADER ==== */
/* === HEADER GENERAL === */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

/* Estado cuando hacés scroll (se achica) */
header.scrolled {
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.85);
}

/* Estado cuando se oculta al bajar */
header.hide {
  transform: translateY(-100%);
}

/* Evita scroll lateral */
html, body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

.logo-img {
  height: 28px;
  transition: height 0.3s ease;
}
header.scrolled .logo-img {
  height: 22px;
}

/* ===== MENÚ HAMBURGUESA ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle span {
  background: #fff;
  height: 3px;
  width: 25px;
  margin: 3px 0;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Animación en forma de X */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* === NAV === */
nav {
  display: flex;
  gap: 16px;
  transition: transform 0.3s ease-in-out;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #FFA500;
}

/* === RESPONSIVE (MÓVIL) === */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  nav {
    position: fixed;
    top: 60px;
    right: 0;
    width: 70%;
    max-width: 250px;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    transform: translateX(100%);
    box-sizing: border-box;
  }

  nav.active {
    transform: translateX(0);
  }

  nav a {
    font-size: 14px;
  }
}


/* ===== SECCIÓN SOBRE MÍ ===== */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #111;
  color: #fff;
  overflow-x: hidden;
}

.sobre-mi-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sobre-mi-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("imagen/pexels-artempodrez-8986040.jpg") no-repeat center center/cover;
  filter: brightness(40%) grayscale(20%);
  z-index: -1;
}

.sobre-mi-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 100px 20px;
  max-width: 1200px;
  z-index: 2;
}

.sobre-mi-info {
  background: rgba(0, 0, 0, 0.8);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 165, 0, 0.4);
  flex: 1 1 500px;
  min-width: 350px;
  animation: fadeIn 1.5s ease-in-out;
}

.sobre-mi-info h2 {
  color: #FFA500;
  text-shadow: 0 0 10px rgba(255, 165, 0, 0.7);
  font-size: 2em;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.sobre-mi-info p {
  line-height: 1.6;
  margin-bottom: 10px;
}

.sobre-mi-foto img {
  width: 420px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.7);
  animation: slideIn 1.2s ease-in-out;
}

.btn-sobre-mi {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #FFA500;
  color: #000;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.btn-sobre-mi:hover {
  background: #ffb733;
}

/* ===== AJUSTES MOBILE SOBRE MÍ ===== */
@media (max-width: 768px) {
  .sobre-mi-container {
    flex-direction: column;
    padding: 60px 15px;
    text-align: center;
  }

  .sobre-mi-info {
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.3);
    min-width: auto;
  }

  .sobre-mi-info h2 {
    font-size: 1.6em;
  }

  .sobre-mi-foto img {
    width: 85%;
    max-width: 300px;
    margin-top: 20px;
  }

  .sobre-mi-section::before {
    filter: brightness(60%) grayscale(10%);
  }
}

/* ===== ANIMACIONES ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}


/* ==== HERO (VIDEO RESPONSIVE) ==== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* en PC ocupa toda la altura */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Llenar sin franjas */
  object-position: center;
  z-index: -1;
}

.overlay-hero {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.35));
}

/* 📱 Ajuste móvil: video más visible y completo */
@media (max-width: 768px) {
  .hero {
    height: 55vh; /* 🔹 Más alto */
  }
  .hero-video {
    object-fit: contain; /* Muestra todo sin recortes */
    width: 100%;
    height: 100%;
    background-color: #000; /* Franjas si sobra */
  }
}

/* ==== SOCIAL ==== */
.social {
  display: flex; flex-direction: column; align-items: center; gap: 40px;
  padding: 50px 30px; background: #000; text-align: center;
}
.social-left { max-width: 850px; }
.social-left h2 { font-size: 32px; margin-bottom: 20px; }
.social-left p { color: #ccc; font-size: 16px; margin-bottom: 20px; }
.instagram-btn {
  display: inline-block; padding: 12px 20px; background: #FFA500;
  color: #000; text-decoration: none; font-weight: bold; border-radius: 6px;
}

/* ==== SWIPER ==== */
.social-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 30px;
}
.swiper-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
.swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-slide blockquote.instagram-media {
  width: 100% !important;
  max-width: 95% !important;
  margin: auto !important;
  min-height: 500px;
  border: none !important;
  background: #000;
}
@media (max-width: 768px) {
  .swiper-container { max-width: 100%; }
  .swiper-slide blockquote.instagram-media {
    max-width: 100% !important;
    min-height: 420px;
  }
}

/* ==== FLECHAS ==== */
.swiper-navigation {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-button-next {
  pointer-events: all;
  background: transparent !important;
  border: none !important;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.swiper-button-prev::after,
.swiper-button-next::after { content: none !important; }
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 22px;
  height: 22px;
  stroke: #007BFF;
  stroke-width: 3;
  fill: none;
}
.swiper-button-prev:hover svg,
.swiper-button-next:hover svg { stroke: #1E90FF; }

/* ==== SERVICIOS ==== */
.servicios {
  background: #fff; color: #000; padding: 60px 20px; text-align: center;
}
.titulo-servicios {
  font-size: 22px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 5px;
}
.linea { width: 60px; height: 3px; background-color: #FFA500; margin: 0 auto 30px; }
.servicios-container {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 35px;
}
.servicio-card {
  position: relative; width: 420px; height: 320px; overflow: hidden;
  border-radius: 10px; box-shadow: 0 0 20px rgba(0,0,0,0.3);
  cursor: pointer; transition: transform .3s, box-shadow .3s;
}
.servicio-card:hover { transform: scale(1.05); box-shadow: 0 0 25px rgba(255,165,0,0.5); }
.servicio-card img { width: 100%; height: 100%; object-fit: cover; }
.overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.6); color: #fff;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 20px;
  opacity: 0; transition: opacity .3s;
}
.servicio-card:hover .overlay { opacity: 1; }
.overlay h3 { font-size: 20px; margin-bottom: 10px; font-weight: bold; }
.btn-servicio { color: #FFA500; font-weight: bold; text-decoration: none; }
.btn-servicio:hover { color: #fff; }

/* ==== SOBRE MÍ ==== */
.about-section {
  background: #0b0b0b; padding: 80px 20px; color: #fff;
}
.about-container {
  display: grid; grid-template-columns: 1fr 1.2fr; align-items: center;
  gap: 40px; max-width: 1300px; margin: auto;
}
.about-image img {
  width: 100%; border-radius: 12px; box-shadow: 0 8px 25px rgba(0,0,0,0.5);
  transition: transform .3s;
}
.about-image img:hover { transform: scale(1.05); }
.about-text h2 {
  font-size: 42px; margin-bottom: 20px; text-transform: uppercase;
  letter-spacing: 2px; color: #FFA500;
}
.about-text p { font-size: 18px; line-height: 1.7; margin-bottom: 15px; color: #ddd; }
.highlight-text {
  font-size: 22px; font-weight: bold; background: #111; padding: 20px;
  border-left: 6px solid #FFA500; border-radius: 8px; margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(255,165,0,0.3);
}
.about-text .btn-cta {
  display: inline-block; padding: 12px 24px; background: #FFA500; color: #000;
  font-weight: bold; text-decoration: none; border-radius: 8px;
  transition: background .3s;
}
.about-text .btn-cta:hover { background: #ff8c00; }

/* ==== GRID DIFUMINADO ==== */
.flip-grid-section {
  background: #111;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}
.flip-grid-title {
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 40px;
  letter-spacing: 2px;
  font-weight: bold;
}
.flip-grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  justify-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.flip-grid-card {
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  transition: transform .3s;
}
.flip-grid-card:hover { transform: translateY(-6px); }
.flip-grid-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter .4s, transform .4s;
}
.flip-grid-card:hover img {
  filter: blur(3px) brightness(1.4);
  transform: scale(1.08);
}
.card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  transition: opacity .3s ease;
  text-align: center;
  padding: 10px;
}
.flip-grid-card:hover .card-overlay { opacity: 1; }
.card-overlay h3 {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.card-overlay p {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
}

/* GRID RESPONSIVE */
@media (max-width: 1024px) {
  .flip-grid-container { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 600px) {
  .flip-grid-container { grid-template-columns: 1fr; gap: 15px; }
}

/* ==== ELIGE TU CENTRO ==== */
.elige-centro {
  background: #fff; color: #000; padding: 60px 20px; text-align: center;
}
.elige-titulo { font-size: 26px; font-weight: bold; margin-bottom: 40px; }
.elige-container {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 40px;
  align-items: flex-start; max-width: 1200px; margin: auto;
}
.elige-info { flex: 1; min-width: 300px; text-align: left; }
.elige-info h3 { font-size: 22px; margin-bottom: 15px; color: #FFA500; }
.elige-info p { margin: 8px 0; font-size: 16px; }
.elige-info a { color: #FFA500; font-weight: bold; text-decoration: none; }
.elige-info a:hover { color: #000; }
.elige-mapa { flex: 1; min-width: 350px; }

/* ==== FOOTER ==== */
.footer {
  background: #0c0c0c; color: #fff; padding: 40px 20px; text-align: center;
}
.footer-logo img { width: 120px; margin-bottom: 20px; }
.footer-copy { font-size: 14px; color: #ccc; margin-top: 15px; }

/* ==== RESPONSIVE ==== */
@media (max-width: 992px) {
  .about-container { grid-template-columns: 1fr; text-align: center; }
  .about-text h2 { font-size: 32px; }
  .highlight-text { font-size: 20px; }
}
/* ==== TESTIMONIOS ==== */
.testimonios {
  background: #c7c7c73a;
  color: #fdfafa;
  padding: 60px 20px;
  text-align: center;
}

.testimonios-titulo {
  font-size: 26px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.testimonios-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-bottom: 50px;
}

.testimonio-card {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 25px 20px;
  max-width: 320px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: left;
  position: relative;
}

.estrellas {
  color: #FFA500;
  font-size: 20px;
  margin-bottom: 10px;
}

.testimonio-card h3 {
  font-size: 18px;
  margin: 5px 0;
  color: #222;
}

.testimonio-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 12px;
}

.testimonio-card .cliente {
  font-size: 14px;
  font-weight: bold;
  color: #888;
}

/* Logos inferiores */
.testimonios-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.testimonios-logos img {
  height: 70px;
  object-fit: contain;
  opacity: 0.8;
  transition: transform .3s, opacity .3s;
}

.testimonios-logos img:hover {
  transform: scale(1.1);
  opacity: 1;
}

@media (max-width: 768px) {
  .testimonios-container {
    flex-direction: column;
    align-items: center;
  }
  .testimonio-card {
    max-width: 90%;
  }
  .testimonios-logos img {
    height: 55px;
  }
}
/* ==== CTA FINAL ==== */
.cta-final {
  background: linear-gradient(135deg, #111 0%, #1a1a1a 50%, #000 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-content {
  max-width: 700px;
}

.cta-content h2 {
  font-size: 34px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #FFA500;
}

.cta-content p {
  font-size: 18px;
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 30px;
}

.btn-cta-final {
  display: inline-block;
  background: #FFA500;
  color: #000;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(255,165,0,0.4);
  transition: all 0.3s ease;
}

.btn-cta-final:hover {
  background: #ffb733;
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(255,165,0,0.6);
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .cta-content h2 { font-size: 26px; }
  .cta-content p { font-size: 16px; }
  .btn-cta-final { font-size: 15px; padding: 12px 24px; }
}
/* ==== CTA SECTION ==== */
.cta-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 🔹 Imagen de fondo universal (funciona en PC y Móvil) */
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('imagen/pexels-dimkidama-14908957.jpg');
  background-size: cover;
  background-position: center;
  z-index: -2;
  transform: scale(1.1);
  transition: transform 1s ease;
}

/* 🔹 Oscurece la imagen para mejorar la lectura */
.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: -1;
}

/* 🔹 Simulación de movimiento en scroll */
.cta-section.scrolled::before {
  transform: scale(1.2);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.cta-content h2 {
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #FFA500;
}

.cta-content p {
  font-size: 18px;
  color: #ddd;
  line-height: 1.6;
  margin-bottom: 25px;
}

.cta-btn {
  display: inline-block;
  background: #FFA500;
  color: #000;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255,165,0,0.5);
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  background: #ffb733;
  box-shadow: 0 0 25px rgba(255,165,0,0.6);
}

/* 🔹 Ajuste para pantallas pequeñas */
@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 26px;
  }
  .cta-content p {
    font-size: 16px;
  }
}

/* ==== Decoración lateral ==== */
.side-image {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 180px;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

.side-image.left {
  left: 0;
}

.side-image.right {
  right: 0;
}

/* 📱 Móvil */
@media (max-width: 768px) {
  .cta-section {
    padding: 70px 15px;
    background-attachment: scroll;
  }
  .cta-content h2 { font-size: 26px; }
  .cta-content p { font-size: 16px; }
  .side-image { display: none; }
}
/* ==== FOOTER NUEVO (ESTILO PRO) ==== */
.footer {
  background: #0c0c0c;
  color: #ddd;
  padding: 60px 20px 30px;
  text-align: left;
  font-size: 15px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 30px;
}

.footer-column h4 {
  color: #FFA500;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-column ul li a:hover {
  color: #FFA500;
}

/* Logo e info inferior */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
}

.footer-logo img {
  width: 100px;
  margin-bottom: 10px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 10px 0 15px;
}

.footer-social a {
  color: #FFA500;
  font-size: 20px;
  transition: transform 0.2s, color 0.2s;
}

.footer-social a:hover {
  color: #fff;
  transform: scale(1.15);
}

.footer-copy {
  font-size: 13px;
  color: #aaa;
}
/* ==== CTA FINAL CON FONDO PARALLAX ==== */
.cta-final {
  position: relative;
  background: url('imagen/pexels-dimkidama-14908957.jpg') center center / cover fixed no-repeat; /* 🌆 Cambia esta URL por la tuya */
  color: #fff;
  text-align: center;
  padding: 120px 20px;
  overflow: hidden;
}

/* 🔸 Capa oscura encima de la imagen */
.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #FFA500;
}

.cta-content p {
  font-size: 18px;
  color: #ddd;
  line-height: 1.7;
  margin-bottom: 35px;
}

.btn-cta-final {
  display: inline-block;
  background: #FFA500;
  color: #000;
  padding: 14px 30px;
  font-size: 17px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(255,165,0,0.4);
  transition: all 0.3s ease;
}

.btn-cta-final:hover {
  background: #ffb733;
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(255,165,0,0.6);
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .cta-final { padding: 90px 20px; background-attachment: scroll; }
  .cta-content h2 { font-size: 26px; }
  .cta-content p { font-size: 16px; }
  .btn-cta-final { font-size: 15px; padding: 12px 24px; }
}
/* ==== PRESUPUESTO ==== */
.presupuesto {
  background: #000;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.presupuesto h1 {
  font-size: 32px;
  color: #FFA500;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.presupuesto p {
  color: #ccc;
  margin-bottom: 40px;
}

.form-group {
  margin: 20px auto;
  max-width: 400px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
}

select, input[type="number"] {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: none;
  outline: none;
  margin-top: 5px;
  font-size: 15px;
}

.servicios-lista {
  background: #111;
  padding: 20px;
  border-radius: 10px;
}

.total-box {
  background: #111;
  padding: 20px;
  border-radius: 10px;
  margin: 20px auto;
  max-width: 400px;
}

.total-box h2 { color: #FFA500; margin-bottom: 10px; }

.btn-calcular, .btn-enviar {
  background: #FFA500;
  color: #000;
  font-weight: bold;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  margin: 10px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-calcular:hover, .btn-enviar:hover {
  background: #ffb733;
  transform: translateY(-2px);
}

.btn-enviar[disabled] {
  background: #555;
  color: #999;
  cursor: not-allowed;
}
.footer-mapa iframe {
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(250, 249, 246, 0.911);
  background-color: #ffffff; /* Fondo negro si no carga */
}
/* ====== BASE HEADER ====== */
#cd-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 60px;
  display:flex; align-items:center; justify-content:space-between;
  padding: 0 14px;
  background: rgba(0,0,0,0.40);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  transition: transform .25s ease, background-color .25s ease, height .25s ease;
}
#cd-header.scrolled{ background: rgba(0,0,0,0.7); height: 56px; }
#cd-header.hide{ transform: translateY(-100%); }

/* Logo */
.cd-logo{ display:flex; align-items:center; gap:8px; }
.cd-logo-img{ height: 28px; display:block; }

/* Botón hamburguesa */
.cd-toggle{
  display:none; /* se muestra en mobile */
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:6px;
  width:44px; height:44px;
  border:none; background:transparent; cursor:pointer;
  z-index: 2100;
}
.cd-toggle span{
  width:26px; height:3px; border-radius:2px; background:#fff;
  transition: transform .25s ease, opacity .2s ease;
}
.cd-toggle.is-open span:nth-child(1){ transform: translateY(9px) rotate(45deg); }
.cd-toggle.is-open span:nth-child(2){ opacity:0; }
.cd-toggle.is-open span:nth-child(3){ transform: translateY(-9px) rotate(-45deg); }

/* Menú desktop */
#cd-nav{
  display:flex; align-items:center; gap:20px;
}
#cd-nav a{
  color:#fff; text-decoration:none; font-weight:600; font-size:14px;
  transition: color .2s ease;
}
#cd-nav a:hover{ color:#FFA500; }
#cd-nav .cd-presu{ color:#FFA500; }

/* ====== MOBILE ====== */
@media (max-width: 768px){
  .cd-toggle{ display:flex; }

  /* El menú se vuelve panel deslizante */
  #cd-nav{
    position: fixed;
    top:0; right:0;
    height:100vh; width:75%; max-width: 300px;
    padding: 80px 22px 24px;
    flex-direction:column; align-items:flex-start; gap:16px;
    background: rgba(0,0,0,0.96);
    box-shadow: -6px 0 20px rgba(0,0,0,.35);
    transform: translateX(100%) !important;
    transition: transform .28s ease-in-out;
    z-index:2050;
  }
  #cd-nav.is-open{ transform: translateX(0) !important; }
  #cd-nav a{ font-size:16px; }

  /* Evitar desbordes laterales y scroll horizontal */
  html, body{ overflow-x:hidden; }
  body.cd-no-scroll{ overflow:hidden; }
}

/* Por si tu CSS anterior pisa al nav genérico */
/*header nav{ /* NO toques esto; evitamos colisiones */
  /* vacío a propósito */

