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

body {
  font-family: "Nunito", sans-serif;
  background: #eef1f8;
  min-height: 100vh;
}

/* ── NAV ── */
nav {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 64px;
  border-bottom: 0.5px solid #e3e6ed;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: #1e3a8a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 16px;
}

.logo-text .brand {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: #1e3a8a;
  line-height: 1.1;
}

.logo-text .sub {
  display: block;
  font-size: 9px;
  font-weight: 700;
  color: #3b82f6;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #374151;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s;
}

.nav-links a:hover {
  color: #1e3a8a;
}

.nav-links a.active {
  color: #1e3a8a;
  border-bottom: 2.5px solid #1e3a8a;
  border-radius: 0;
  padding-bottom: 3.5px;
}

.nav-links i {
  font-size: 15px;
}

.btn-join {
  background: #1e3a8a !important;
  color: #fff !important;
  border-radius: 10px !important;
  padding: 8px 18px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  border-bottom: none !important;
  transition: background 0.15s !important;
}

.btn-join:hover {
  background: #1e40af !important;
}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: calc(100vh - 64px);
  padding: 3rem 2.5rem;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-left {
  padding-right: 1rem;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 1.25rem;
}

.hero-eyebrow i {
  font-size: 16px;
  color: #f59e0b;
}

.hero-eyebrow span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #374151;
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  color: #111827;
  margin-bottom: 1.25rem;
}

.hero-title .accent {
  color: #1e3a8a;
}

.hero-desc {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: #1e3a8a;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 700;
  font-family: "Nunito", sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s;
  text-decoration: none;
}

.btn-primary:hover {
  background: #1e40af;
}

.btn-secondary {
  background: #fff;
  color: #374151;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  padding: 13px 22px;
  font-size: 15px;
  font-weight: 700;
  font-family: "Nunito", sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.15s;
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: #9ca3af;
}

/* ── HERO RIGHT ── */
.hero-right {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── FLOATING CARDS ── */
.float-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  z-index: 10;
}

.float-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-card-icon.amber {
  background: #fef3c7;
}
.float-card-icon.amber i {
  color: #d97706;
  font-size: 18px;
}
.float-card-icon.navy {
  background: #dbeafe;
}
.float-card-icon.navy i {
  color: #1e3a8a;
  font-size: 18px;
}

.float-card-label {
  font-size: 13px;
  font-weight: 800;
  color: #111827;
}
.float-card-sub {
  font-size: 11px;
  color: #6b7280;
  font-weight: 600;
}

.card-vip {
  top: 30px;
  right: 40px;
}
.card-projects {
  bottom: 30px;
  right: 10px;
}

/* ── MAIN IMAGE CARD ── */
.main-image-card {
  background: #1e293b;
  border-radius: 20px;
  overflow: hidden;
  width: 340px;
  position: relative;
  z-index: 5;
}

.img-placeholder {
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
}

.img-placeholder svg {
  width: 100%;
  height: 100%;
  display: block;
}

.img-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: #10b981;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
}

.img-card-body {
  padding: 14px 16px;
}

.img-card-title {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 12px;
}

.img-card-features {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: #94a3b8;
  font-weight: 600;
}

.feature-dot {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.dot.green {
  background: #10b981;
}
.dot.navy {
  background: #3b82f6;
}

/* ── SECTION SHARED ── */
.section {
  padding: 5rem 2.5rem;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #0f172a;
  text-align: center;
  margin-bottom: 0.75rem;
}

.section-divider {
  width: 60px;
  height: 4px;
  border-radius: 2px;
  margin: 0 auto 1.5rem;
}

.section-desc {
  font-size: 15px;
  color: #4b5563;
  text-align: center;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 3rem;
}

/* ── PILARES ── */
.pilares-bg {
  background: #eef1f8;
}

.pilares-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.pilar-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pilar-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.pilar-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pilar-icon i {
  font-size: 22px;
}
.pilar-icon.green {
  background: #dcfce7;
}
.pilar-icon.green i {
  color: #16a34a;
}
.pilar-icon.blue {
  background: #dbeafe;
}
.pilar-icon.blue i {
  color: #2563eb;
}
.pilar-icon.amber {
  background: #fef3c7;
}
.pilar-icon.amber i {
  color: #d97706;
}
.pilar-icon.red {
  background: #fee2e2;
}
.pilar-icon.red i {
  color: #dc2626;
}

.pilar-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #9ca3af;
}

.pilar-card h3 {
  font-size: 18px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 0.75rem;
}
.pilar-card p {
  font-size: 13.5px;
  color: #4b5563;
  line-height: 1.65;
  flex: 1;
}

.pilar-bar {
  height: 4px;
  border-radius: 0 0 0 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.pilar-bar.green {
  background: #16a34a;
}
.pilar-bar.blue {
  background: #2563eb;
}
.pilar-bar.amber {
  background: #f59e0b;
}
.pilar-bar.red {
  background: #dc2626;
}

/* ── MEMBRESÍAS ── */
.membresias-bg {
  background: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-top: 3%;
}

.pricing-card {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  height: -webkit-fill-available;
}

.pricing-card.featured {
  border: 2px solid #1e3a8a;
  transform: scale(1.02);
}

.badge-recomendado {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: #1e3a8a;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pricing-card h3 {
  font-size: 20px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 0.4rem;
}
.pricing-card .plan-desc {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.pricing-price {
  margin-bottom: 1.5rem;
}

.pricing-price .amount {
  font-size: 3rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1;
}

.pricing-price .period {
  font-size: 14px;
  color: #6b7280;
  font-weight: 600;
}

.pricing-features-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1e3a8a;
  margin-bottom: 0.75rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 1.75rem;
}

.pricing-features li {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: #374151;
  padding: 5px 0;
  line-height: 1.4;
}

.pricing-features li i {
  color: #10b981;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-card.featured .pricing-features li i {
  color: #1e3a8a;
}

.btn-plan {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  font-family: "Nunito", sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
}

.btn-plan.outline {
  background: #fff;
  border: 1.5px solid #d1d5db;
  color: #374151;
}

.btn-plan.outline:hover {
  border-color: #6b7280;
}

.btn-plan.filled {
  background: #1e3a8a;
  border: none;
  color: #fff;
}

.btn-plan.filled:hover {
  background: #1e40af;
}

.pricing-custom {
  background: #f8fafc;
  border-radius: 14px;
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.pricing-custom-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pricing-custom-left i {
  font-size: 28px;
  color: #374151;
}
.pricing-custom h4 {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 3px;
}
.pricing-custom p {
  font-size: 13px;
  color: #6b7280;
}

/* ── SALÓN DE EVENTOS ── */
.salon-bg {
  background: #eef1f8;
}

.salon-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
}

.salon-features-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
}

.salon-features-card h3 {
  font-size: 18px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.salon-features-card h3 i {
  color: #f59e0b;
}

.salon-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.salon-feature {
  display: flex;
  gap: 12px;
}

.salon-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.salon-feature-icon i {
  font-size: 18px;
  color: #475569;
}

.salon-feature h4 {
  font-size: 13.5px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}
.salon-feature p {
  font-size: 12.5px;
  color: #6b7280;
  line-height: 1.5;
}

.salon-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
}

.salon-stat {
  background: #fff;
  border-radius: 14px;
  padding: 1rem;
  text-align: center;
}

.salon-stat .stat-val {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 4px;
}

.salon-stat .stat-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #9ca3af;
}

/* Cotiza form */
.cotiza-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.75rem;
}

.cotiza-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.cotiza-header-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #fee2e2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cotiza-header-icon i {
  font-size: 20px;
  color: #dc2626;
}
.cotiza-header h3 {
  font-size: 16px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 2px;
}
.cotiza-header p {
  font-size: 12px;
  color: #6b7280;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #374151;
  margin-bottom: 6px;
}

.form-input,
.form-select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 14px;
  font-family: "Nunito", sans-serif;
  color: #374151;
  background: #fff;
  outline: none;
  transition: border-color 0.15s;
}

.form-input:focus,
.form-select:focus {
  border-color: #1e3a8a;
}

.btn-cotiza {
  width: 100%;
  padding: 14px;
  background: #dc2626;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  font-family: "Nunito", sans-serif;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.15s;
}

.btn-cotiza:hover {
  background: #b91c1c;
}

.form-note {
  font-size: 11px;
  color: #9ca3af;
  text-align: center;
  margin-top: 8px;
}

/* ── EQUIPO ── */
.equipo-bg {
  background: #fff;
}

.equipo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.team-card {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 18px;
  overflow: hidden;
}

.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: #e5e7eb;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* placeholder avatar when no image */
.team-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
}

.team-info {
  padding: 1rem 1.1rem 1.25rem;
}
.team-info h4 {
  font-size: 14.5px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 2px;
}
.team-info .role {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.team-info p {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.team-socials {
  display: flex;
  gap: 10px;
}

.team-socials a {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #6b7280;
  font-size: 15px;
  transition: background 0.15s;
}

.team-socials a:hover {
  background: #e2e8f0;
  color: #374151;
}

#equipo {
  display: none;
}

/* ── CTA VISITA ── */
.cta-visita {
  background: #eef1f8;
  padding: 4rem 2.5rem;
  text-align: center;
}

.cta-visita h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-visita p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* ── FOOTER ── */
footer {
  background: #1e3a8a;
  color: #fff;
  padding: 3.5rem 2.5rem 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e3a8a;
  font-weight: 900;
  font-size: 16px;
}

.footer-logo .brand {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  display: block;
  line-height: 1.1;
}
.footer-logo .sub {
  font-size: 9px;
  font-weight: 700;
  color: #f59e0b;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
}

.footer-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  transition: background 0.15s;
}

.footer-socials a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0.75rem;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact i {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-cert {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px 14px;
  margin-top: 1rem;
}

.footer-cert .cert-title {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 3px;
}
.footer-cert .cert-desc {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom .heart {
  color: #ef4444;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav {
    padding: 0 1rem;
  }
  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 2rem 1.25rem;
    min-height: auto;
    gap: 3rem;
  }

  .hero-left {
    padding-right: 0;
  }

  .hero-right {
    height: 420px;
    justify-content: center;
  }
  .card-vip {
    top: 10px;
    right: 10px;
  }
  .card-projects {
    bottom: 10px;
    right: 0;
  }

  .section {
    padding: 3rem 1.25rem;
  }
  .pilares-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card.featured {
    transform: none;
  }
  .salon-grid {
    grid-template-columns: 1fr;
  }
  .salon-features-grid {
    grid-template-columns: 1fr;
  }
  .salon-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .equipo-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* COWORKING */

/* ── PAGE HEADER ── */
.page-header {
  background: #fff;
  padding: 4rem 2.5rem 3rem;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: #1e3a8a;
  border-radius: 2px;
  margin: 0 auto 1.25rem;
}

.page-header p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

/* ── FILTER TABS ── */
.filter-wrap {
  background: #fff;
  padding: 0 2.5rem 2.5rem;
  display: flex;
  justify-content: center;
}

.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: 30px;
  border: 1.5px solid #d1d5db;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: "Nunito", sans-serif;
  color: #374151;
  cursor: pointer;
  transition: all 0.18s;
}

.filter-btn:hover {
  border-color: #1e3a8a;
  color: #1e3a8a;
}

.filter-btn.active {
  background: #1e3a8a;
  border-color: #1e3a8a;
  color: #fff;
}

/* ── GALLERY GRID ── */
.gallery-section {
  padding: 2.5rem 2.5rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.space-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.2s;
}

.space-card:hover {
  transform: translateY(-4px);
}

.space-card[data-hidden="true"] {
  display: none;
}

.card-image {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
}

.card-image svg {
  width: 100%;
  height: 100%;
  display: block;
}

.card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #fff;
  color: #0f172a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}

.card-body {
  padding: 1.25rem 1.4rem 1.5rem;
}

.card-body h3 {
  font-size: 16px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 0.4rem;
}

.card-body p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.card-status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  color: #16a34a;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16a34a;
  flex-shrink: 0;
}

/* ── FAQ ── */
.faq-section {
  background: #fff;
  padding: 4rem 2.5rem;
}

.faq-inner {
  max-width: 900px;
  margin: 0 auto;
}

.faq-inner h2 {
  font-size: 1.6rem;
  font-weight: 900;
  color: #0f172a;
  text-align: center;
  margin-bottom: 2.5rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
}

.faq-item h4 {
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.faq-item p {
  font-size: 13.5px;
  color: #4b5563;
  line-height: 1.65;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .page-header {
    padding: 2.5rem 1.25rem 2rem;
  }
  .filter-wrap {
    padding: 0 1.25rem 1.75rem;
  }
  .gallery-section {
    padding: 1.5rem 1.25rem 3rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .faq-section {
    padding: 2.5rem 1.25rem;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* SALON */

/* ── SHARED ── */
.section {
  padding: 4.5rem 2.5rem;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 0.85rem;
}

.eyebrow-red {
  background: #fee2e2;
  color: #dc2626;
}
.eyebrow-red i {
  color: #dc2626;
}

.section-title {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 900;
  color: #0f172a;
  text-align: center;
  margin-bottom: 0.7rem;
}

.section-divider {
  width: 60px;
  height: 4px;
  border-radius: 2px;
  margin: 0 auto 1.25rem;
}

.section-desc {
  font-size: 15px;
  color: #4b5563;
  text-align: center;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* ──────────────────────────────
       SECCIÓN 1 — HERO / FEATURES + FORM
    ────────────────────────────── */
.hero-section {
  background: #eef1f8;
  padding: 4rem 2.5rem 3rem;
  text-align: center;
}

.hero-section .section-eyebrow {
  margin-bottom: 0.75rem;
}

.salon-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
  max-width: 1200px;
  margin: 3rem auto 0;
}

/* features card */
.features-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
}

.features-card > h3 {
  font-size: 18px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.features-card > h3 i {
  color: #f59e0b;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 12px;
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 19px;
  color: #475569;
}

.feature-item h4 {
  font-size: 13.5px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}
.feature-item p {
  font-size: 12.5px;
  color: #6b7280;
  line-height: 1.5;
}

/* stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat-box {
  background: #fff;
  border-radius: 14px;
  padding: 1rem;
  text-align: center;
}

.stat-box .val {
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-box .lbl {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #9ca3af;
}

/* cotiza form */
.cotiza-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.75rem;
  position: sticky;
  top: 80px;
}

.cotiza-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.cotiza-head-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #fee2e2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cotiza-head-icon i {
  font-size: 20px;
  color: #dc2626;
}
.cotiza-head h3 {
  font-size: 16px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 2px;
}
.cotiza-head p {
  font-size: 12px;
  color: #6b7280;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #374151;
  margin-bottom: 6px;
}

.form-input,
.form-select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 14px;
  font-family: "Nunito", sans-serif;
  color: #374151;
  background: #fff;
  outline: none;
  transition: border-color 0.15s;
}

.form-input:focus,
.form-select:focus {
  border-color: #2f26dc;
}

.btn-cotiza {
  width: 100%;
  padding: 14px;
  background: #dc2626;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  font-family: "Nunito", sans-serif;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.15s;
}

.btn-cotiza:hover {
  background: #b91c1c;
}

.form-note {
  font-size: 11px;
  color: #9ca3af;
  text-align: center;
  margin-top: 8px;
}

/* ──────────────────────────────
       SECCIÓN 2 — GALERÍA / RECORRIDO
    ────────────────────────────── */
.galeria-section {
  background: #eef1f8;
  padding: 4.5rem 2.5rem;
}

.galeria-nav {
  background: #fff;
  border-radius: 14px;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 2rem auto 2rem;
  max-width: 1200px;
  flex-wrap: wrap;
}

.galeria-nav-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 800;
  color: #374151;
  margin-right: auto;
}

.galeria-nav-label i {
  color: #dc2626;
}

.gnav-btn {
  padding: 8px 18px;
  border-radius: 8px;
  border: none;
  font-size: 13px;
  font-weight: 700;
  font-family: "Nunito", sans-serif;
  cursor: pointer;
  color: #374151;
  background: transparent;
  transition: all 0.15s;
}

.gnav-btn:hover {
  background: #f1f5f9;
}
.gnav-btn.active {
  background: #dc2626;
  color: #fff;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.galeria-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
}

.galeria-card[data-hidden="true"] {
  display: none;
}

.gcard-img {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.gcard-img svg {
  width: 100%;
  height: 100%;
  display: block;
}

.gcard-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.gbadge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 20px;
}

.gbadge-red {
  background: #dc2626;
  color: #fff;
}
.gbadge-white {
  background: #fff;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 5px;
}
.gbadge-white i {
  font-size: 12px;
}

.gcard-body {
  padding: 1.2rem 1.4rem 1.4rem;
}
.gcard-body h3 {
  font-size: 16px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 0.4rem;
}
.gcard-body p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.55;
  margin-bottom: 0.9rem;
}

.gcard-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gcard-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  color: #16a34a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gcard-status i {
  font-size: 14px;
}

.gcard-link {
  font-size: 12px;
  font-weight: 700;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.15s;
}

.gcard-link:hover {
  color: #374151;
}

/* ──────────────────────────────
       SECCIÓN 3 — CALENDARIO
    ────────────────────────────── */
.calendar-section {
  background: #fff;
  padding: 4.5rem 2.5rem;
}

.cal-inner {
  max-width: 1100px;
  margin: 2.5rem auto 0;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 20px;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
}

.cal-left h3 {
  font-size: 17px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 3px;
}

.cal-left .cal-subtitle {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.cal-month-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.cal-month-label {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #0f172a;
}

.cal-nav-btns {
  display: flex;
  gap: 6px;
}

.cal-nav-btn {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1.5px solid #e5e7eb;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  color: #374151;
  transition: background 0.15s;
}

.cal-nav-btn:hover {
  background: #f1f5f9;
}

.cal-head-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 4px;
}

.cal-day-name {
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  color: #9ca3af;
  padding: 4px 0;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-day {
  aspect-ratio: 1;
  border-radius: 10px;
  border: 1.5px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 6px 4px 4px;
  cursor: pointer;
  transition: border-color 0.15s;
  position: relative;
}

.cal-day.empty {
  cursor: default;
}

.cal-day:not(.empty):hover {
  border-color: #6b7280;
}

.cal-day.selected {
  border-color: #1e3a8a !important;
}

.cal-day.green {
  background: #dcfce7;
}
.cal-day.yellow {
  background: #fef9c3;
}
.cal-day.red {
  background: #fee2e2;
}

.cal-day .dn {
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.cal-day.green .dn {
  color: #166534;
}
.cal-day.yellow .dn {
  color: #854d0e;
}
.cal-day.red .dn {
  color: #991b1b;
}

.cal-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.cal-day.green .cal-dot {
  background: #16a34a;
}
.cal-day.yellow .cal-dot {
  background: #d97706;
}
.cal-day.red .cal-dot {
  background: #dc2626;
}

/* legend */
.cal-legend {
  background: #f8fafc;
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.leg-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
}

.leg-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.leg-dot.green {
  background: #16a34a;
}
.leg-dot.yellow {
  background: #d97706;
}
.leg-dot.red {
  background: #dc2626;
}

/* right panel */
.cal-right {
  border-left: 1.5px solid #f1f5f9;
  padding-left: 2rem;
}

.cal-day-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.cal-day-header h4 {
  font-size: 17px;
  font-weight: 900;
  color: #0f172a;
}

.cal-status-badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.cal-status-badge.green {
  background: #dcfce7;
  color: #166534;
}
.cal-status-badge.yellow {
  background: #fef9c3;
  color: #854d0e;
}
.cal-status-badge.red {
  background: #fee2e2;
  color: #991b1b;
}

.cal-agenda-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 0.75rem;
}

.cal-divider {
  height: 1px;
  background: #e5e7eb;
  margin-bottom: 1rem;
}

.agenda-item {
  background: #f8fafc;
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.agenda-item h5 {
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2px;
}
.agenda-item p {
  font-size: 12px;
  color: #6b7280;
}
.agenda-item i {
  font-size: 18px;
  color: #16a34a;
}

.btn-reservar {
  width: 100%;
  padding: 14px;
  background: #1e3a8a;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  font-family: "Nunito", sans-serif;
  cursor: pointer;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.15s;
}

.btn-reservar:hover {
  background: #1e40af;
}

.btn-reservar i {
  color: #f59e0b;
}

.reservar-note {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #9ca3af;
  text-align: center;
  margin-top: 8px;
}

/* ──────────────────────────────
       SECCIÓN 4 — FORMATOS FLEXIBLES
    ────────────────────────────── */
.formatos-section {
  background: #eef1f8;
  padding: 4.5rem 2.5rem;
}

.formatos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.formato-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
}

.formato-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.formato-img svg {
  width: 100%;
  height: 100%;
  display: block;
}

.formato-body {
  padding: 1.25rem 1.4rem 1.5rem;
}
.formato-body h3 {
  font-size: 17px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 0.5rem;
}
.formato-body p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.55;
  margin-bottom: 0.85rem;
}

.formato-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #dc2626;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .salon-layout {
    grid-template-columns: 1fr;
  }
  .cotiza-card {
    position: static;
  }
  .cal-inner {
    grid-template-columns: 1fr;
  }
  .cal-right {
    border-left: none;
    border-top: 1.5px solid #f1f5f9;
    padding-left: 0;
    padding-top: 1.5rem;
  }
  .galeria-grid {
    grid-template-columns: 1fr 1fr;
  }
  .formatos-grid {
    grid-template-columns: 1fr;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .section,
  .hero-section,
  .galeria-section,
  .calendar-section,
  .formatos-section {
    padding: 2.5rem 1.25rem;
  }
  .galeria-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .galeria-nav {
    flex-direction: column;
    align-items: flex-start;
  }
}
