/* ===== RESET Y BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Oswald', sans-serif;
  background-color: #fafafa;
  color: #1a1a1a;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TOP BAR ===== */
.top-bar {
  background-color: #1a1a1a;
  color: #b0b0b0;
  text-align: center;
  padding: 6px 0;
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.8px;
  border-bottom: 2px solid #8b1a2b;
}

/* ===== BADGE ===== */
.badge {
  display: inline-block;
  background-color: rgba(139, 26, 43, 0.12);
  color: #8b1a2b;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 14px;
  border-radius: 30px;
  margin-bottom: 12px;
}

.highlight {
  color: #8b1a2b;
  font-weight: 600;
}

/* ===== HEADER ===== */
.header {
  background: #ffffff;
  border-bottom: 1px solid #eaeaea;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.header-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo-area {
  display: flex;
  flex-direction: column;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1px;
  color: #1a1a1a;
  line-height: 1.2;
}

.subhead {
  font-size: 0.75rem;
  font-weight: 300;
  color: #6b6b6b;
  letter-spacing: 0.1px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: none;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  color: #1a1a1a;
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.nav-toggle:hover {
  border-color: #8b1a2b;
  color: #8b1a2b;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.nav-links a {
  color: #2c2c2c;
  transition: color 0.25s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #8b1a2b;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #8b1a2b;
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-small {
  padding: 8px 22px;
  font-size: 0.8rem;
}

/* ===== BOTONES ===== */
.btn-primary {
  display: inline-block;
  background: #8b1a2b;
  color: #fff;
  padding: 12px 32px;
  border-radius: 40px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(139, 26, 43, 0.25);
  text-align: center;
}

.btn-primary:hover {
  background: #6e1421;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 26, 43, 0.30);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #1a1a1a;
  padding: 12px 32px;
  border-radius: 40px;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  border: 1.5px solid #c0c0c0;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: #8b1a2b;
  color: #8b1a2b;
  background: rgba(139, 26, 43, 0.04);
}

/* ===== HERO ===== */
.hero {
  padding: 60px 0 70px;
  background: linear-gradient(135deg, #f8f6f4 0%, #ffffff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-text h2 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #1a1a1a;
  letter-spacing: 0.1px;
}

.hero-desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: #3d3d3d;
  max-width: 520px;
  margin-bottom: 28px;
  letter-spacing: 0.2px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-contact-mini {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  font-weight: 300;
  color: #4a4a4a;
}

.hero-contact-mini span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-contact-mini .material-symbols-outlined {
  font-size: 1.2rem;
  color: #8b1a2b;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-placeholder {
  background: #eae6e2;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1/1;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #2c2c2c;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.06);
  border: 1px solid #e0dcd8;
}

.img-placeholder p {
  font-weight: 500;
  font-size: 1.2rem;
  margin-top: 8px;
  letter-spacing: 0.2px;
}

.img-placeholder small {
  font-size: 0.7rem;
  font-weight: 300;
  color: #6b6b6b;
}

/* ===== SERVICIOS ===== */
.services {
  padding: 70px 0;
  background: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 2.6rem;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0.2px;
}

.section-header p {
  color: #555;
  max-width: 500px;
  margin: 6px auto 0;
  font-weight: 300;
  font-size: 1.05rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}

.service-card {
  background: #f9f8f6;
  padding: 28px 18px;
  border-radius: 18px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #d4cbc4;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
  background: #ffffff;
}

.service-card .material-symbols-outlined {
  font-size: 2.4rem;
  color: #8b1a2b;
  margin-bottom: 8px;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 4px;
  letter-spacing: 0.3px;
}

.service-card p {
  font-size: 0.85rem;
  font-weight: 300;
  color: #555;
  line-height: 1.4;
}

.service-highlight {
  background: #8b1a2b;
  color: #fff;
}

.service-highlight .material-symbols-outlined {
  color: #fff;
}

.service-highlight p {
  color: #f0e0e0;
}

/* ===== BOOKING ===== */
.booking {
  padding: 70px 0;
  background: #f2efec;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.booking-info h2 {
  font-size: 2.6rem;
  font-weight: 600;
  margin: 8px 0 16px;
  letter-spacing: 0.5px;
}

.booking-info p {
  color: #3d3d3d;
  max-width: 440px;
  font-weight: 300;
  font-size: 1.05rem;
}

.booking-features {
  margin: 24px 0 20px;
}

.booking-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  font-weight: 300;
}

.booking-features .material-symbols-outlined {
  color: #8b1a2b;
}

.booking-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.price-tag {
  font-size: 2.2rem;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0.5px;
}

.price-note {
  font-size: 0.85rem;
  font-weight: 300;
  color: #777;
}

.booking-card {
  background: #ffffff;
  padding: 36px 32px;
  border-radius: 28px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.booking-card h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.booking-card form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.booking-card input,
.booking-card select,
.booking-card textarea {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  background: #fcfbfa;
  transition: border 0.2s ease;
}

.booking-card input:focus,
.booking-card select:focus,
.booking-card textarea:focus {
  outline: none;
  border-color: #8b1a2b;
  box-shadow: 0 0 0 3px rgba(139, 26, 43, 0.08);
}

.booking-card textarea {
  resize: vertical;
}

.legal-note {
  font-size: 0.75rem;
  font-weight: 300;
  color: #888;
  text-align: center;
  margin-top: 4px;
}

/* ===== FOOTER ===== */
.footer {
  background: #1a1a1a;
  color: #d0d0d0;
  padding: 48px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  gap: 32px;
}

.footer-brand h3 {
  font-size: 1.8rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-sub {
  font-size: 0.75rem;
  font-weight: 300;
  color: #a0a0a0;
  margin-top: 2px;
}

.footer-desc {
  margin-top: 8px;
  font-size: 0.95rem;
  font-weight: 300;
  color: #b8b8b8;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  font-weight: 300;
}

.footer-contact .material-symbols-outlined {
  color: #8b1a2b;
}

.footer-legal {
  text-align: right;
  font-size: 0.85rem;
  font-weight: 300;
}

.footer-small {
  font-size: 0.7rem;
  font-weight: 300;
  color: #777;
  margin-top: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h2 {
    font-size: 2.4rem;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-contact-mini {
    justify-content: center;
  }

  .hero-image {
    order: -1;
  }

  .img-placeholder {
    max-width: 280px;
  }

  .booking-grid {
    grid-template-columns: 1fr;
  }

  .booking-info {
    text-align: center;
  }

  .booking-info p {
    margin-left: auto;
    margin-right: auto;
  }

  .booking-features {
    display: inline-block;
    text-align: left;
  }

  .booking-price {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-legal {
    text-align: left;
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .header-grid {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .header-top {
    width: 100%;
    text-align: left;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .nav-links.is-open {
    max-height: 400px;
    padding: 6px 0 4px;
  }

  .nav-links a {
    padding: 12px 4px;
    border-bottom: 1px solid rgba(26, 26, 26, 0.07);
    text-align: left;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-links a::after {
    display: none;
  }

  .btn-small {
    padding: 6px 18px;
    font-size: 0.75rem;
  }

  .hero-text h2 {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .booking-card {
    padding: 24px 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact p {
    justify-content: center;
  }

  .footer-legal {
    text-align: center;
  }
}
/* ===== HERO BACKGROUND NODES ===== */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-bg-nodes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

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

.node {
  position: absolute;
  border-radius: 50%;
  background: rgba(180, 180, 180, 0.08);
  border: 1px solid rgba(160, 160, 160, 0.06);
  animation: floatNode 20s infinite ease-in-out;
}

/* Diferentes tamaños y posiciones */
.node-1 { width: 120px; height: 120px; top: 5%; left: 2%; animation-delay: 0s; }
.node-2 { width: 80px; height: 80px; top: 15%; right: 5%; animation-delay: 2s; }
.node-3 { width: 200px; height: 200px; bottom: 10%; left: 8%; animation-delay: 4s; }
.node-4 { width: 60px; height: 60px; top: 40%; right: 15%; animation-delay: 1s; }
.node-5 { width: 150px; height: 150px; bottom: 20%; right: 3%; animation-delay: 3s; }
.node-6 { width: 40px; height: 40px; top: 60%; left: 3%; animation-delay: 5s; }
.node-7 { width: 100px; height: 100px; top: 25%; left: 30%; animation-delay: 2.5s; }
.node-8 { width: 70px; height: 70px; bottom: 35%; left: 45%; animation-delay: 1.5s; }
.node-9 { width: 50px; height: 50px; top: 75%; right: 25%; animation-delay: 4.5s; }
.node-10 { width: 180px; height: 180px; top: 55%; left: 55%; animation-delay: 3.5s; }

@keyframes floatNode {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  25% {
    transform: translate(30px, -20px) scale(1.1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-15px, 25px) scale(0.9);
    opacity: 0.4;
  }
  75% {
    transform: translate(20px, 10px) scale(1.05);
    opacity: 0.7;
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
}

/* Versión responsive - menos nodos en móvil */
@media (max-width: 768px) {
  .node-3, .node-5, .node-7, .node-10 {
    display: none;
  }
  .node-1 { width: 80px; height: 80px; }
  .node-2 { width: 60px; height: 60px; }
  .node-4 { width: 40px; height: 40px; }
  .node-6 { width: 30px; height: 30px; }
  .node-8 { width: 50px; height: 50px; }
  .node-9 { width: 35px; height: 35px; }
}
/* ===== ERRORES EN FORMULARIO ===== */
.booking-card input.error,
.booking-card select.error,
.booking-card textarea.error {
  border-color: #dc3545 !important;
  background-color: #fff8f8 !important;
}

.booking-card input.error:focus,
.booking-card select.error:focus,
.booking-card textarea.error:focus {
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15) !important;
}
/* ===== TARJETAS DE INDICADORES (dentro de la grilla de servicios) ===== */
/* Reutilizan la estructura .service-card (icono + h3 + p) para ocupar el
   espacio sobrante de la última fila y mantener la misma cuadrícula. */
.stat-card {
  background: rgba(139, 26, 43, 0.05);
  border: 1px dashed rgba(139, 26, 43, 0.28);
}

.stat-card:hover {
  background: rgba(139, 26, 43, 0.08);
  border-color: rgba(139, 26, 43, 0.4);
}

.stat-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #8b1a2b;
  letter-spacing: 0.3px;
}

.stat-card p {
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.6px;
  font-weight: 500;
  color: #6b6b6b;
}

/* ===== SOBRE MÍ ===== */
.about {
  padding: 70px 0;
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
}

.about-photo-frame {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
}

.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text h2 {
  font-size: 2.4rem;
  font-weight: 600;
  margin: 8px 0 16px;
  line-height: 1.2;
}

.about-text p {
  font-size: 1rem;
  font-weight: 300;
  color: #3d3d3d;
  margin-bottom: 14px;
  max-width: 560px;
}

.about-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 400;
  color: #1a1a1a;
}

.about-list .material-symbols-outlined {
  color: #8b1a2b;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-photo-frame {
    max-width: 320px;
    margin: 0 auto;
  }
  .about-list {
    align-items: center;
  }
  .about-text p {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===== PROCESO ===== */
.process {
  padding: 70px 0;
  background: #f2efec;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.process-step {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 24px;
  position: relative;
  border: 1px solid #eae6e2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.06);
}

.process-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(139, 26, 43, 0.18);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.process-step h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.process-step p {
  font-size: 0.9rem;
  font-weight: 300;
  color: #555;
  line-height: 1.5;
}

/* ===== TESTIMONIOS ===== */
.testimonials {
  padding: 70px 0;
  background: #ffffff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: #f9f8f6;
  border-radius: 20px;
  padding: 28px 26px;
  border: 1px solid #eee;
}

.stars {
  color: #8b1a2b;
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 0.95rem;
  font-weight: 300;
  color: #333;
  line-height: 1.6;
  margin-bottom: 14px;
}

.testimonial-author {
  font-size: 0.8rem;
  font-weight: 500;
  color: #8b1a2b;
  letter-spacing: 0.3px;
}

/* ===== BOOKING - ALTERNATIVA WHATSAPP ===== */
.booking-alt {
  margin-top: 20px;
  font-size: 0.9rem;
  font-weight: 300;
  color: #4a4a4a;
}

.booking-alt a {
  color: #8b1a2b;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== FORMULARIO: honeypot + feedback ===== */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-feedback {
  font-size: 0.85rem;
  font-weight: 400;
  border-radius: 10px;
  padding: 0;
  min-height: 0;
  transition: all 0.25s ease;
}

.form-feedback.is-visible {
  padding: 10px 14px;
  margin-top: -4px;
}

.form-feedback.success {
  background: rgba(46, 125, 50, 0.08);
  color: #2e7d32;
}

.form-feedback.error {
  background: rgba(220, 53, 69, 0.08);
  color: #dc3545;
}

/* ===== FAQ ===== */
.faq {
  padding: 70px 0;
  background: #f2efec;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #eae6e2;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #1a1a1a;
  text-align: left;
}

.faq-icon {
  color: #8b1a2b;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 22px;
}

.faq-item.is-open .faq-answer {
  padding: 0 22px 20px;
}

.faq-answer p {
  font-size: 0.92rem;
  font-weight: 300;
  color: #444;
  line-height: 1.6;
}

/* ===== BOTÓN FLOTANTE WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 200;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float .material-symbols-outlined {
  color: #fff;
  font-size: 1.8rem;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55);
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
  }
}
