/* =============================================
   SELECTO — ESTILOS
   No necesitás editar este archivo.
   ============================================= */

:root {
  --cream: #F5F0E8;
  --beige: #EDE8DC;
  --white: #FAFAF7;
  --black: #1A1814;
  --charcoal: #2D2B26;
  --muted: #7A756A;
  --olive: #6B7A5A;
  --olive-light: #EFF2EB;
  --terracota: #C4664A;
  --terracota-light: #F8EDE8;
  --lavanda: #8B7FAA;
  --lavanda-light: #F0EDF6;
  --gold: #C9A84C;
  --border: rgba(26, 24, 20, 0.12);
  --border-strong: rgba(26, 24, 20, 0.25);
  --shadow: 0 4px 24px rgba(26, 24, 20, 0.08);
  --shadow-lg: 0 12px 48px rgba(26, 24, 20, 0.14);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Syne', sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 64px;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--black);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-logo span {
  color: var(--olive);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--black);
}

.nav-cta {
  background: var(--black) !important;
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 100px;
}

.nav-cta:hover {
  background: var(--charcoal) !important;
}

.nav-hamburger {
  display: none;
  border: none;
  background: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--black);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5vw 80px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 40%, rgba(107, 122, 90, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--olive);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--olive);
}

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--black);
  max-width: 800px;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--olive);
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 48px;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: var(--charcoal);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--black);
  padding: 14px 32px;
  border-radius: 100px;
  border: 1.5px solid var(--border-strong);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  border-color: var(--black);
  background: var(--beige);
}

.hero-stats {
  margin-top: 80px;
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat .num {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  color: var(--black);
  display: block;
}

.hero-stat .label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

/* BUSCADOR */
.search-bar-wrap {
  max-width: 700px;
  margin: -28px auto 0;
  padding: 0 5vw;
  position: relative;
  z-index: 10;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1.5px solid var(--border-strong);
  border-radius: 100px;
  padding: 8px 8px 8px 24px;
  box-shadow: var(--shadow-lg);
}

.search-icon {
  font-size: 16px;
}

.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  color: var(--black);
  background: transparent;
}

.search-bar input::placeholder {
  color: var(--muted);
}

.search-bar button {
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 10px 24px;
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.search-bar button:hover {
  background: var(--charcoal);
}

/* CATEGORÍAS */
.categories-section {
  padding: 72px 5vw 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}

.category-pill:hover, .category-pill.active {
  border-color: var(--olive);
  background: var(--olive-light);
  color: var(--olive);
}

.category-pill .pill-icon {
  font-size: 15px;
}

.category-pill.all {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.category-pill.all:hover, .category-pill.all.active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
}

/* GRID */
.grid-section {
  padding: 16px 5vw 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.grid-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.grid-count {
  font-size: 14px;
  color: var(--muted);
}

.sort-select {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 12px;
  background: var(--white);
  cursor: pointer;
  color: var(--black);
}

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

/* CARD */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}

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

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.card:hover .card-image img {
  transform: scale(1.04);
}

.card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 100px;
}

.badge-cat {
  background: rgba(250, 250, 247, 0.92);
  color: var(--charcoal);
  backdrop-filter: blur(8px);
}

.badge-featured {
  background: var(--gold);
  color: var(--white);
}

.badge-premium {
  background: var(--black);
  color: var(--white);
}

.card-body {
  padding: 20px;
}

.card-title {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--black);
  margin-bottom: 4px;
  letter-spacing: -0.3px;
}

.card-tagline {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.5;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.card-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--muted);
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.card-links {
  display: flex;
  gap: 8px;
}

.card-link-btn {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 15px;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
  color: var(--charcoal);
}

.card-link-btn:hover {
  background: var(--cream);
  border-color: var(--border-strong);
}

.card-plan {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* SIN RESULTADOS */
.no-results {
  text-align: center;
  padding: 80px 20px;
  display: none;
}

.no-results.visible {
  display: block;
}

.no-results h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  margin-bottom: 12px;
}

.no-results p {
  color: var(--muted);
  font-size: 15px;
}

/* MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(26, 24, 20, 0.6);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--white);
  border-radius: 24px;
  width: 100%;
  max-width: 780px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(24px) scale(0.98);
  transition: transform 0.3s;
  position: relative;
}

.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(26, 24, 20, 0.5);
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.modal-close:hover {
  background: var(--black);
}

/* CARRUSEL */
.carousel {
  position: relative;
  height: 320px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.45s cubic-bezier(.4, 0, .2, 1);
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(250, 250, 247, 0.9);
  border: none;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  z-index: 5;
}

.carousel-btn:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.05);
}

.carousel-btn.prev {
  left: 12px;
}

.carousel-btn.next {
  right: 12px;
}

.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.2s;
  cursor: pointer;
}

.carousel-dot.active {
  background: var(--white);
  width: 18px;
  border-radius: 3px;
}

.carousel-label {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(26, 24, 20, 0.5);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
}

/* MODAL CONTENIDO */
.modal-content {
  padding: 28px;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 16px;
}

.modal-title-group {
  flex: 1;
}

.modal-title {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  color: var(--black);
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

.modal-rubro {
  font-size: 13px;
  font-weight: 600;
  color: var(--olive);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.modal-plan-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.modal-desc {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.75;
  margin-bottom: 24px;
}

.modal-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.modal-info-item {
  background: var(--cream);
  border-radius: 12px;
  padding: 14px 16px;
}

.modal-info-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.modal-info-value {
  font-size: 14px;
  color: var(--black);
  font-weight: 500;
}

.modal-contact-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.modal-contact-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: all 0.2s;
  cursor: pointer;
}

.contact-btn.wa {
  background: #25D366;
  color: #fff;
}

.contact-btn.wa:hover {
  background: #1ebe5d;
}

.contact-btn.ig {
  background: linear-gradient(135deg, #E1306C, #F77737);
  color: #fff;
}

.contact-btn.ig:hover {
  opacity: 0.9;
}

.contact-btn.em {
  background: var(--cream);
  color: var(--black);
  border-color: var(--border-strong);
}

.contact-btn.em:hover {
  background: var(--beige);
}

.contact-btn.web {
  background: var(--black);
  color: var(--white);
}

.contact-btn.web:hover {
  background: var(--charcoal);
}

/* PLANES */
.planes-section {
  background: var(--black);
  color: var(--white);
  padding: 96px 5vw;
}

.planes-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.planes-header {
  text-align: center;
  margin-bottom: 64px;
}

.planes-header .section-label {
  color: rgba(255, 255, 255, 0.4);
}

.planes-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: -1px;
  margin-top: 12px;
}

.planes-header h2 em {
  color: var(--gold);
  font-style: italic;
}

.planes-header p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 16px;
  margin-top: 16px;
}

.planes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.plan-card {
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
}

.plan-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}

.plan-card.featured {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.plan-badge-top {
  position: absolute;
  top: 0;
  right: 24px;
  background: var(--gold);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px 6px;
  border-radius: 0 0 12px 12px;
  letter-spacing: 0.5px;
}

.plan-name {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  margin-bottom: 8px;
}

.plan-price {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 4px;
}

.plan-price span {
  font-size: 18px;
  font-weight: 400;
  opacity: 0.5;
}

.plan-period {
  font-size: 13px;
  opacity: 0.4;
  margin-bottom: 28px;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.plan-features li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

.plan-card.featured .plan-features li::before {
  background: rgba(201, 168, 76, 0.3);
  color: var(--gold);
}

.plan-cta {
  display: block;
  text-align: center;
  margin-top: 32px;
  padding: 13px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  background: transparent;
}

.plan-cta:hover {
  background: rgba(255, 255, 255, 0.1);
}

.plan-card.featured .plan-cta {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.plan-card.featured .plan-cta:hover {
  background: #d4b052;
}

/* FOOTER */
footer {
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 40px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--black);
  text-decoration: none;
}

.footer-copy {
  font-size: 13px;
  color: var(--muted);
}

/* ANIMACIONES */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s, transform 0.5s;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 700px) {
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px 5vw;
    border-bottom: 1px solid var(--border);
    gap: 20px;
  }

  .hero h1 {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .modal-info-grid {
    grid-template-columns: 1fr;
  }

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

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

  .search-bar-wrap {
    margin-top: 24px;
  }
}

.atencion-btn {
  transition: transform 0.2s ease, background-color 0.2s ease;
  cursor: pointer;
  border-radius: 8px;
}

.atencion-btn:hover {
  background-color: rgba(37, 211, 102, 0.1);
  /* Un verde muy suave al pasar el mouse */
  transform: translateY(-2px);
}