/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent: #c8f000;
  --accent-dark: #a8cc00;
  --bg: #0a0a0a;
  --bg2: #111111;
  --bg3: #161616;
  --text: #ffffff;
  --text-muted: #aaaaaa;
  --border: #222222;
  --font-main: 'Barlow', sans-serif;
  --font-cond: 'Barlow Condensed', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; image-rendering: auto; }

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

ul { list-style: none; }

.accent { color: var(--accent); }
.accent-link { color: var(--accent); font-weight: 600; }
.center { text-align: center; }
.section-label {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  padding: 0.85rem 2rem;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  padding: 0.85rem 2rem;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: border-color 0.2s, transform 0.15s;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(10,10,10,0.97);
  padding: 0.7rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.logo-icon {
  color: var(--accent);
  font-size: 1.6rem;
  line-height: 1;
}
.logo-text {
  font-family: var(--font-cond);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
  display: flex;
  flex-direction: column;
}
.logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--accent);
  font-weight: 600;
}
.nav-links {
  display: flex;
  gap: 1.8rem;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-cond);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.btn-nav {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  background: var(--accent);
  color: #000;
  padding: 0.6rem 1.4rem;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--accent-dark); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(0.6);
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.7) 45%,
    rgba(0,0,0,0.15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  max-width: 660px;
  margin-left: max(2rem, calc(50vw - 640px));
}
.hero-label {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  color: var(--accent);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: var(--font-cond);
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 400px;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-tour {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  transition: color 0.2s;
}
.hero-tour:hover { color: var(--accent); }
.play-btn {
  width: 42px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  padding-left: 3px;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.hero-tour:hover .play-btn { border-color: var(--accent); color: var(--accent); }

/* ===== BENEFITS BAR ===== */
.benefits-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}
.benefits-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 2rem;
  border-right: 1px solid var(--border);
}
.benefit-item:last-child { border-right: none; }
.benefit-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 2px; }
.benefit-item h4 {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
  color: var(--accent);
}
.benefit-item p { font-size: 0.8rem; color: var(--text-muted); }

/* ===== ABOUT ===== */
.about {
  padding: 7rem 2rem;
  background: var(--bg);
}
.about-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text h2 {
  font-family: var(--font-cond);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.about-text p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
  line-height: 1.8;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-cond);
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-top: 0.3rem;
}
.about-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.65);
}
.about-logo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.logo-icon-lg {
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.9;
}
.about-logo-text {
  font-family: var(--font-cond);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.1;
}
.about-logo-text small {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  color: var(--accent);
}

/* ===== SERVICES ===== */
.services {
  padding: 7rem 2rem;
  background: var(--bg2);
}
.services-container { max-width: 1280px; margin: 0 auto; }
.services-container h2 {
  font-family: var(--font-cond);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 3rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.service-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
}
.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.5s ease;
  filter: brightness(0.55);
}
.service-card:hover .service-img { transform: scale(1.06); filter: brightness(0.35); }
.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
}
.service-icon {
  position: absolute;
  bottom: 3.5rem;
  left: 1rem;
  font-size: 1.6rem;
}
.service-card h3 {
  position: absolute;
  bottom: 1.6rem;
  left: 1rem;
  right: 1rem;
  font-family: var(--font-cond);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.service-card p {
  position: absolute;
  bottom: 0.4rem;
  left: 1rem;
  right: 1rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s, transform 0.3s;
}
.service-card:hover p { opacity: 1; transform: translateY(0); }

/* ===== PLANS ===== */
.plans {
  padding: 7rem 2rem;
  background: var(--bg3);
}
.plans-container { max-width: 1280px; margin: 0 auto; }
.plans-container h2 {
  font-family: var(--font-cond);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.plans-sub { color: var(--text-muted); margin-bottom: 3rem; }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.plan-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 2rem;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.plan-card:hover { border-color: rgba(200,240,0,0.4); transform: translateY(-4px); }
.plan-card.featured {
  border-color: var(--accent);
  transform: translateY(-8px);
  background: #111;
}
.plan-card.featured:hover { transform: translateY(-12px); }
.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.25rem 1rem;
  white-space: nowrap;
}
.plan-header { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.plan-header h3 {
  font-family: var(--font-cond);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
  color: var(--accent);
}
.plan-price {
  font-family: var(--font-cond);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}
.currency { font-size: 1.5rem; vertical-align: super; }
.period { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.plan-features { margin-bottom: 2rem; }
.plan-features li {
  padding: 0.55rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.85);
}
.plan-features li.disabled { color: var(--text-muted); opacity: 0.5; }
.btn-plan {
  display: block;
  text-align: center;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  padding: 0.85rem;
  border: 2px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.btn-plan:hover { border-color: var(--accent); color: var(--accent); }
.btn-plan.accent-btn { background: var(--accent); color: #000; border-color: var(--accent); }
.btn-plan.accent-btn:hover { background: var(--accent-dark); }
.plans-note {
  margin-top: 2.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 5rem 0 0;
  background: var(--bg);
}
.gallery h2 {
  font-family: var(--font-cond);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 4px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item.big {
  grid-row: 1 / 3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.5s ease, filter 0.3s;
  filter: brightness(0.7);
}
.gallery-item:hover img { transform: scale(1.05); filter: brightness(0.4); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 7rem 2rem;
  background: var(--bg2);
}
.testimonials-container { max-width: 1280px; margin: 0 auto; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 2rem;
  position: relative;
  transition: border-color 0.3s;
}
.testimonial-card.featured-t { border-color: rgba(200,240,0,0.4); }
.quote-mark {
  font-size: 4rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.4;
  font-family: Georgia, serif;
  margin-bottom: -1rem;
}
.quote-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-cond);
  font-size: 1.2rem;
  font-weight: 900;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span { font-size: 0.75rem; color: var(--text-muted); }
.dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s;
}
.dot.active { background: var(--accent); }

/* ===== FAQ ===== */
.faq {
  padding: 7rem 2rem;
  background: var(--bg);
}
.faq-container { max-width: 1280px; margin: 0 auto; }
.faq-container h2 {
  font-family: var(--font-cond);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 3rem;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  padding: 1.2rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-question span {
  font-size: 1.3rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s;
  font-weight: 300;
}
.faq-item.open .faq-question span { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer p {
  padding-bottom: 1.2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 200px; }

/* ===== CTA ===== */
.cta {
  position: relative;
  padding: 9rem 2rem;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.3);
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 100%);
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.cta-content h2 {
  font-family: var(--font-cond);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 1.2rem;
}
.cta-content p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 0;
}
.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}
.social-links { display: flex; gap: 0.8rem; }
.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: border-color 0.2s, transform 0.2s;
}
.social-link:hover { border-color: var(--accent); transform: translateY(-2px); }
.footer-links h4, .footer-contact h4 {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.footer-links ul li, .footer-contact ul li {
  padding: 0.35rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links ul li a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a:hover { color: var(--accent); }

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

/* --- Tablet grande (≤1024px) --- */
@media (max-width: 1024px) {
  .benefits-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefit-item:nth-child(2) { border-right: none; }
  .benefit-item:nth-child(3),
  .benefit-item:nth-child(4) { border-bottom: none; }

  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .service-img-wrap { aspect-ratio: 2/3; }

  .about-container { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap { aspect-ratio: 16/7; max-height: 400px; }

  .footer-container { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* --- Tablet / móvil grande (≤768px) --- */
@media (max-width: 768px) {
  /* Navbar */
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 58px; left: 0; right: 0;
    background: rgba(8,8,8,0.99);
    padding: 1.5rem 2rem 2rem;
    gap: 1.2rem;
    z-index: 999;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open a { font-size: 1.1rem; padding: 0.3rem 0; }

  /* Hero */
  .hero { min-height: 100svh; align-items: flex-end; }
  .hero-content {
    padding: 2rem 1.5rem 3.5rem;
    margin-left: 0;
    max-width: 100%;
  }
  .hero-overlay {
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.95) 0%,
      rgba(0,0,0,0.65) 50%,
      rgba(0,0,0,0.2) 100%
    );
  }
  .hero-title { font-size: clamp(3rem, 14vw, 4.5rem); line-height: 0.9; }
  .hero-sub { font-size: 0.95rem; max-width: 100%; }
  .hero-btns { gap: 0.75rem; }
  .hero-tour { margin-top: 0.5rem; }

  /* Benefits */
  .benefits-bar { padding: 1.5rem 0; }
  .benefits-container {
    grid-template-columns: 1fr 1fr;
    padding: 0 1rem;
  }
  .benefit-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 0.9rem 1rem;
    gap: 0.7rem;
  }
  .benefit-item:nth-child(3),
  .benefit-item:nth-child(4) { border-bottom: none; }
  .benefit-icon { font-size: 1.4rem; }
  .benefit-item h4 { font-size: 0.75rem; }
  .benefit-item p { font-size: 0.72rem; }

  /* About */
  .about { padding: 4rem 1.5rem; }
  .about-container { gap: 2.5rem; }
  .about-img-wrap { aspect-ratio: 4/3; max-height: none; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stat-num { font-size: 1.8rem; }

  /* Services */
  .services { padding: 4rem 1.5rem; }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .service-img-wrap { aspect-ratio: 3/4; }
  .service-card p { opacity: 1; transform: none; font-size: 0.7rem; }

  /* Plans */
  .plans { padding: 4rem 1.5rem; }
  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .plan-card.featured { transform: none; border-color: var(--accent); }
  .plan-card.featured:hover { transform: translateY(-4px); }

  /* Gallery */
  .gallery { padding: 4rem 0 0; }
  .gallery h2 { padding: 0 1.5rem; margin-bottom: 2rem; }
  .gallery .section-label { padding: 0 1.5rem; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 180px 180px;
    gap: 3px;
  }
  .gallery-item.big {
    grid-row: 1 / 2;
    grid-column: 1 / 3;
  }
  .gallery-overlay { opacity: 1; background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%); }

  /* Testimonials */
  .testimonials { padding: 4rem 1.5rem; }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* FAQ */
  .faq { padding: 4rem 1.5rem; }
  .faq-grid { grid-template-columns: 1fr; gap: 0; }

  /* CTA */
  .cta { padding: 6rem 1.5rem; }

  /* Footer */
  .footer { padding: 3rem 1.5rem 0; }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
    padding: 1.2rem 0;
  }
  .footer-legal { gap: 1.5rem; }
}

/* --- Móvil (≤480px) --- */
@media (max-width: 480px) {
  /* Hero */
  .hero-title { font-size: clamp(2.8rem, 16vw, 4rem); }
  .hero-sub { font-size: 0.9rem; }
  .btn-primary, .btn-outline {
    width: 100%;
    text-align: center;
    display: block;
  }
  .hero-btns { flex-direction: column; gap: 0.6rem; }

  /* Benefits: 1 columna */
  .benefits-container { grid-template-columns: 1fr; }
  .benefit-item { border-bottom: 1px solid var(--border); padding: 1rem 1.2rem; }
  .benefit-item:last-child { border-bottom: none; }

  /* Services: 2 columnas compactas */
  .services-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .service-card h3 { font-size: 0.85rem; bottom: 1.2rem; }
  .service-icon { font-size: 1.2rem; bottom: 2.8rem; }

  /* Gallery: 1 columna */
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 260px 200px 200px 200px 200px;
  }
  .gallery-item.big { grid-column: 1; grid-row: 1; }

  /* Plans */
  .plans-grid { max-width: 100%; }

  /* About stats */
  .stat-num { font-size: 1.6rem; }
  .stats-row { gap: 1rem; }

  /* Testimonials */
  .testimonial-card { padding: 1.5rem; }

  /* Modal */
  .demo-modal { padding: 2rem 1.2rem 1.5rem; }
  .demo-modal h3 { font-size: 1.2rem; }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== DEMO MODAL ===== */
.demo-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.demo-modal-backdrop.active {
  display: flex;
  animation: fadeInBackdrop 0.25s ease;
}
@keyframes fadeInBackdrop {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.demo-modal {
  background: #111;
  border: 1px solid #2a2a2a;
  border-top: 3px solid var(--accent);
  max-width: 420px;
  width: 100%;
  padding: 2.5rem 2rem 2rem;
  position: relative;
  text-align: center;
  animation: slideUp 0.3s ease;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.demo-modal-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1rem;
  cursor: pointer;
  padding: 0.3rem 0.5rem;
  line-height: 1;
  transition: color 0.2s;
}
.demo-modal-close:hover { color: var(--accent); }
.demo-modal-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  line-height: 1;
}
.demo-modal-tag {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 0.8rem;
}
.demo-modal h3 {
  font-family: var(--font-cond);
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}
.demo-modal p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.demo-modal-btn {
  display: inline-block;
  background: #25D366;
  color: #fff;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  padding: 0.85rem 2rem;
  width: 100%;
  text-align: center;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 0.8rem;
}
.demo-modal-btn:hover { background: #1ebe5d; transform: translateY(-2px); }
.demo-modal-dismiss {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 0.4rem;
  transition: color 0.2s;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.demo-modal-dismiss:hover { color: #fff; }
