:root {
  --black: #050706;
  --black-2: #0a0f0c;
  --white: #ffffff;
  --muted: #a7b0aa;
  --muted-2: #d5ddd8;
  --green: #39ff88;
  --green-2: #00d96f;
  --green-dark: #063c24;
  --line: rgba(255, 255, 255, 0.1);
  --glass: rgba(255, 255, 255, 0.055);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius: 26px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

/* Background */

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -4;
  background-image:
    linear-gradient(rgba(57, 255, 136, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 255, 136, 0.06) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  z-index: -3;
  pointer-events: none;
}

.glow-1 {
  top: -120px;
  left: -120px;
  background: var(--green);
  animation: floatGlow 8s ease-in-out infinite alternate;
}

.glow-2 {
  right: -120px;
  bottom: 10%;
  background: var(--green-2);
  animation: floatGlow 10s ease-in-out infinite alternate-reverse;
}

@keyframes floatGlow {
  from {
    transform: translateY(0) scale(1);
  }

  to {
    transform: translateY(60px) scale(1.12);
  }
}

/* Header */

.site-header {
  width: min(1280px, calc(100% - 32px));
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 7, 6, 0.72);
  backdrop-filter: blur(18px);
  transition: 0.3s ease;
}

.site-header.scrolled {
  background: rgba(5, 7, 6, 0.92);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand img,
.footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  font-size: 14px;
  color: var(--muted-2);
  transition: 0.25s ease;
}

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

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--green);
  color: #031008 !important;
  font-weight: 800;
  box-shadow: 0 0 30px rgba(57, 255, 136, 0.28);
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  margin: 4px auto;
  border-radius: 999px;
}

/* Hero */

.hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 100vh;
  padding: 150px 0 80px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 60px;
  align-items: center;
}

.hero-v2 {
  min-height: 100vh;
  padding-top: 142px;
  padding-bottom: 70px;
  grid-template-columns: 1fr 0.9fr;
  gap: 56px;
}

.hero-v2 .hero-content {
  max-width: 720px;
}

.badge {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(57, 255, 136, 0.24);
  border-radius: 999px;
  background: rgba(57, 255, 136, 0.08);
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
}

.badge span {
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--green);
}

.hero h1 {
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.95;
  letter-spacing: -0.08em;
  font-weight: 900;
  max-width: 740px;
}

.hero-v2 .hero-content h1 {
  max-width: 720px;
  font-size: clamp(52px, 5.7vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.075em;
}

.hero h1 span,
.hero-v2 .hero-content h1 span {
  display: block;
  color: var(--green);
  text-shadow: 0 0 42px rgba(57, 255, 136, 0.26);
}

.hero p {
  max-width: 650px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-v2 .hero-content p {
  max-width: 620px;
  font-size: 18px;
  line-height: 1.65;
  margin-top: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 850;
  font-size: 15px;
  transition: 0.25s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--green);
  color: #031008;
  box-shadow: 0 0 36px rgba(57, 255, 136, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 56px rgba(57, 255, 136, 0.38);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line);
  color: var(--white);
}

.btn-secondary:hover {
  border-color: rgba(57, 255, 136, 0.45);
  color: var(--green);
  transform: translateY(-3px);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 42px;
}

.hero-points div {
  min-height: 96px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
  backdrop-filter: blur(12px);
}

.hero-points strong {
  display: block;
  color: var(--green);
  font-size: 13px;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}

.hero-points span {
  display: block;
  color: var(--muted-2);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
}

/* Growth Panel */

.hero-visual {
  position: relative;
}

.growth-panel {
  position: relative;
  min-height: 510px;
  padding: 28px;
  border-radius: 36px;
  border: 1px solid rgba(57, 255, 136, 0.28);
  background:
    radial-gradient(circle at 18% 10%, rgba(57, 255, 136, 0.22), transparent 34%),
    radial-gradient(circle at 90% 85%, rgba(57, 255, 136, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035));
  box-shadow:
    0 35px 100px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  animation: cardFloat 5s ease-in-out infinite alternate;
}

.growth-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57, 255, 136, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 255, 136, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: 0.7;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.growth-panel::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -80px;
  bottom: -80px;
  border-radius: 50%;
  background: rgba(57, 255, 136, 0.18);
  filter: blur(50px);
}

@keyframes cardFloat {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-16px);
  }
}

.panel-header,
.panel-main,
.conversion-box,
.panel-services {
  position: relative;
  z-index: 2;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted-2);
  font-size: 14px;
  font-weight: 700;
}

.panel-header div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.panel-header small {
  color: var(--green);
  font-weight: 900;
}

.live-dot {
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 22px var(--green);
}

.panel-main {
  margin-top: 62px;
  max-width: 430px;
}

.panel-main span {
  display: inline-block;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.panel-main h3 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  max-width: 420px;
}

.panel-main p {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
}

.conversion-box {
  margin-top: 34px;
  padding: 22px;
  border: 1px solid rgba(57, 255, 136, 0.18);
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.28);
}

.conversion-box span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 6px;
}

.conversion-box strong {
  display: block;
  color: var(--green);
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.07em;
}

.conversion-line {
  height: 10px;
  margin-top: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  overflow: hidden;
}

.conversion-line span {
  display: block;
  width: 76%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--green-2));
  box-shadow: 0 0 22px rgba(57, 255, 136, 0.42);
  animation: progressPulse 2.8s ease-in-out infinite alternate;
}

@keyframes progressPulse {
  from {
    width: 62%;
  }

  to {
    width: 86%;
  }
}

.panel-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.panel-services div {
  padding: 17px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.panel-services span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 7px;
}

.panel-services strong {
  display: block;
  color: var(--white);
  font-size: 14px;
}

/* Floating tags del panel */

.floating-tag {
  position: absolute;
  z-index: 4;
  padding: 9px 13px;
  border: 1px solid rgba(57, 255, 136, 0.28);
  border-radius: 999px;
  background: rgba(5, 7, 6, 0.92);
  backdrop-filter: blur(10px);
  color: var(--green);
  font-weight: 850;
  font-size: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.hero-v2 .tag-1 {
  right: 20px;
  top: 78px;
  animation: tagMove 4s ease-in-out infinite alternate;
}

.hero-v2 .tag-2 {
  left: 16px;
  bottom: 104px;
  animation: tagMove 5s ease-in-out infinite alternate-reverse;
}

.hero-v2 .tag-3 {
  right: 16px;
  bottom: 54px;
  animation: tagMove 4.5s ease-in-out infinite alternate;
}

@keyframes tagMove {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-15px);
  }
}

/* Sections */

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 95px 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 46px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  margin-bottom: 14px;
}

.section-heading h2,
.split-content h2,
.cta-section h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -0.065em;
  font-weight: 900;
}

.section-heading p,
.split-content p,
.cta-section p {
  color: var(--muted);
  line-height: 1.75;
  margin-top: 18px;
  font-size: 17px;
}

/* Trusted */

.trusted {
  padding: 36px 0 80px;
  text-align: center;
}

.trusted p {
  color: var(--muted);
  margin-bottom: 20px;
}

.trusted-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.trusted-row span {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-2);
  font-size: 14px;
}

/* Services */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card,
.pricing-card,
.process-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  overflow: hidden;
  transition: 0.3s ease;
}

.service-card::before,
.pricing-card::before,
.process-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(57, 255, 136, 0.13), transparent 42%);
  opacity: 0;
  transition: 0.3s ease;
}

.service-card:hover,
.pricing-card:hover,
.process-card:hover {
  transform: translateY(-8px);
  border-color: rgba(57, 255, 136, 0.35);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.service-card:hover::before,
.pricing-card:hover::before,
.process-card:hover::before {
  opacity: 1;
}

.service-card > *,
.pricing-card > *,
.process-card > * {
  position: relative;
  z-index: 2;
}

.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: rgba(57, 255, 136, 0.09);
  border: 1px solid rgba(57, 255, 136, 0.18);
  margin-bottom: 22px;
  font-size: 24px;
}

.service-card h3,
.pricing-card h3,
.process-card h3,
.maintenance h3 {
  font-size: 22px;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.service-card p,
.pricing-card p,
.process-card p,
.maintenance p {
  color: var(--muted);
  line-height: 1.65;
}

.service-card ul,
.pricing-card ul {
  list-style: none;
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.service-card li,
.pricing-card li {
  color: var(--muted-2);
  font-size: 14px;
}

.service-card li::before,
.pricing-card li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
  margin-right: 8px;
}

/* Split Section */

.dark-section {
  width: 100%;
  padding: 110px 0;
  background:
    radial-gradient(circle at 70% 20%, rgba(57, 255, 136, 0.13), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,0.025), transparent);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 70px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.check-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted-2);
}

.check-list span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(57, 255, 136, 0.12);
  color: var(--green);
  font-weight: 900;
}

/* Phone Mockup */

.phone-mockup {
  display: grid;
  place-items: center;
}

.phone-screen {
  width: 285px;
  height: 560px;
  padding: 18px;
  border: 10px solid #101711;
  border-radius: 42px;
  background:
    radial-gradient(circle at top, rgba(57, 255, 136, 0.22), transparent 35%),
    #07100b;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.55);
  animation: phoneFloat 5s ease-in-out infinite alternate;
}

@keyframes phoneFloat {
  from {
    transform: rotate(-2deg) translateY(0);
  }

  to {
    transform: rotate(2deg) translateY(-16px);
  }
}

.phone-header {
  width: 80px;
  height: 6px;
  background: rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  margin: 6px auto 26px;
}

.phone-hero {
  height: 135px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(57, 255, 136, 0.45), rgba(255, 255, 255, 0.06));
  margin-bottom: 22px;
}

.phone-line {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  margin-bottom: 12px;
}

.phone-line.short {
  width: 62%;
}

.phone-button {
  height: 42px;
  border-radius: 999px;
  background: var(--green);
  margin: 26px 0;
  box-shadow: 0 0 24px rgba(57, 255, 136, 0.35);
}

.phone-card {
  height: 86px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  margin-bottom: 14px;
}

.phone-card.small {
  height: 62px;
}

/* Pricing */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: rgba(57, 255, 136, 0.52);
  background:
    radial-gradient(circle at top, rgba(57, 255, 136, 0.18), transparent 40%),
    rgba(255, 255, 255, 0.055);
  transform: translateY(-12px);
}

.popular {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--green);
  color: #031008;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 18px;
}

.price {
  margin: 26px 0;
  color: var(--muted);
}

.price strong {
  display: block;
  color: var(--white);
  font-size: 30px;
  letter-spacing: -0.05em;
  margin-top: 6px;
}

.btn-pricing {
  margin-top: auto;
  width: 100%;
  background: rgba(57, 255, 136, 0.1);
  color: var(--green);
  border-color: rgba(57, 255, 136, 0.24);
}

.btn-pricing:hover {
  background: var(--green);
  color: #031008;
}

.maintenance {
  margin-top: 22px;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(57, 255, 136, 0.22);
  background:
    linear-gradient(135deg, rgba(57, 255, 136, 0.12), rgba(255, 255, 255, 0.035));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.maintenance-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.maintenance-prices span {
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--line);
  color: var(--muted-2);
}

.maintenance-prices strong {
  color: var(--green);
}

/* Process */

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

.process-card span {
  display: block;
  color: var(--green);
  font-weight: 900;
  margin-bottom: 28px;
}

/* CTA */

.cta-section {
  width: min(1180px, calc(100% - 32px));
  margin: 60px auto;
  padding: 56px;
  border-radius: 36px;
  border: 1px solid rgba(57, 255, 136, 0.3);
  background:
    radial-gradient(circle at right, rgba(57, 255, 136, 0.23), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: var(--shadow);
}

.cta-section div {
  max-width: 720px;
}

/* FAQ */

.faq-list {
  max-width: 850px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  padding: 22px;
  border: none;
  background: transparent;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  text-align: left;
}

.faq-item button span {
  color: var(--green);
  font-size: 22px;
}

.faq-item p {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.7;
  padding: 0 22px;
  transition: 0.3s ease;
}

.faq-item.active p {
  max-height: 180px;
  padding: 0 22px 22px;
}

.faq-item.active button span {
  transform: rotate(45deg);
}

/* Footer */

.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 46px 0 120px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer p {
  color: var(--muted);
  margin-top: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: var(--muted-2);
  transition: 0.25s ease;
}

.footer-links a:hover {
  color: var(--green);
}

/* Floating Buttons */

.floating-buttons {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  gap: 10px;
}

.float-btn {
  min-width: 126px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
  transition: 0.25s ease;
}

.float-btn:hover {
  transform: translateY(-4px);
}

.whatsapp {
  background: var(--green);
  color: #031008;
}

.instagram {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.scroll-top {
  position: fixed;
  left: 18px;
  bottom: 22px;
  z-index: 60;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(57, 255, 136, 0.32);
  background: rgba(5, 7, 6, 0.82);
  color: var(--green);
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.25s ease;
  backdrop-filter: blur(12px);
}

.scroll-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Reveal Animation */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */

@media (max-width: 980px) {
  .hero,
  .hero-v2,
  .split {
    grid-template-columns: 1fr;
  }

  .hero,
  .hero-v2 {
    padding-top: 135px;
    gap: 42px;
  }

  .hero-v2 .hero-content {
    max-width: 100%;
  }

  .hero-v2 .hero-content h1 {
    max-width: 780px;
  }

  .growth-panel {
    min-height: 470px;
  }

  .services-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.featured {
    transform: none;
  }

  .cta-section {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 12px;
    width: calc(100% - 24px);
    border-radius: 24px;
  }

  .menu-btn {
    display: block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(5, 7, 6, 0.96);
    backdrop-filter: blur(16px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    padding: 13px 14px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero,
  .hero-v2 {
    width: calc(100% - 24px);
    padding-top: 126px;
    padding-bottom: 45px;
  }

  .hero-v2 .hero-content h1 {
    font-size: clamp(42px, 12vw, 58px);
    line-height: 0.98;
    letter-spacing: -0.065em;
  }

  .hero p,
  .hero-v2 .hero-content p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-points {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .hero-points div {
    min-height: auto;
    padding: 16px;
  }

  .growth-panel {
    min-height: auto;
    padding: 22px;
    border-radius: 28px;
  }

  .panel-main {
    margin-top: 46px;
  }

  .panel-main h3 {
    font-size: 36px;
  }

  .conversion-box strong {
    font-size: 48px;
  }

  .panel-services {
    grid-template-columns: 1fr;
  }

  .hero-v2 .floating-tag {
    position: static;
    width: fit-content;
    margin-top: 10px;
    animation: none;
  }

  .hero-v2 .tag-1,
  .hero-v2 .tag-2,
  .hero-v2 .tag-3 {
    position: relative;
    inset: auto;
  }

  .section {
    width: calc(100% - 24px);
    padding: 68px 0;
  }

  .trusted {
    padding-top: 20px;
  }

  .section-heading {
    text-align: left;
    margin-bottom: 30px;
  }

  .services-grid,
  .pricing-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .pricing-card,
  .process-card {
    padding: 24px;
  }

  .dark-section {
    padding: 75px 0;
  }

  .split {
    width: calc(100% - 24px);
    gap: 42px;
  }

  .phone-screen {
    width: 245px;
    height: 500px;
  }

  .maintenance {
    flex-direction: column;
    align-items: flex-start;
  }

  .maintenance-prices {
    display: grid;
    width: 100%;
  }

  .maintenance-prices span {
    border-radius: 18px;
  }

  .cta-section {
    width: calc(100% - 24px);
    margin: 30px auto;
    padding: 32px 24px;
    border-radius: 28px;
  }

  .footer {
    width: calc(100% - 24px);
    flex-direction: column;
    padding-bottom: 130px;
  }

  .floating-buttons {
    left: 12px;
    right: 12px;
    bottom: 14px;
    grid-template-columns: 1fr 1fr;
  }

  .float-btn {
    min-width: auto;
    width: 100%;
  }

  .scroll-top {
    display: none;
  }
}

@media (max-width: 420px) {
  .brand span {
    font-size: 15px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .hero h1,
  .hero-v2 .hero-content h1 {
    font-size: 42px;
  }

  .section-heading h2,
  .split-content h2,
  .cta-section h2 {
    font-size: 34px;
  }
}/* Ocultar tags flotantes del panel principal */
.hero-v2 .floating-tag {
  display: none !important;
}/* Movimiento / respiración para botones y cards del hero */

.hero-v2 .hero-actions .btn {
  animation: buttonBreath 2.8s ease-in-out infinite;
  will-change: transform, box-shadow;
}

.hero-v2 .hero-actions .btn-secondary {
  animation-delay: 0.35s;
}

.hero-v2 .hero-actions .btn:hover {
  animation-play-state: paused;
  transform: translateY(-4px) scale(1.025);
}

@keyframes buttonBreath {
  0% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-3px) scale(1.018);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

/* Glow especial para el botón principal */

.hero-v2 .hero-actions .btn-primary {
  animation-name: buttonBreath, greenPulse;
  animation-duration: 2.8s, 2.8s;
  animation-timing-function: ease-in-out, ease-in-out;
  animation-iteration-count: infinite, infinite;
}

@keyframes greenPulse {
  0% {
    box-shadow: 0 0 28px rgba(57, 255, 136, 0.22);
  }

  50% {
    box-shadow: 0 0 48px rgba(57, 255, 136, 0.42);
  }

  100% {
    box-shadow: 0 0 28px rgba(57, 255, 136, 0.22);
  }
}

/* Respiración para las 3 cards de abajo */

.hero-points div {
  animation: cardBreath 4s ease-in-out infinite;
  will-change: transform, border-color, box-shadow;
}

.hero-points div:nth-child(1) {
  animation-delay: 0s;
}

.hero-points div:nth-child(2) {
  animation-delay: 0.35s;
}

.hero-points div:nth-child(3) {
  animation-delay: 0.7s;
}

.hero-points div:hover {
  animation-play-state: paused;
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(57, 255, 136, 0.42);
  box-shadow: 0 18px 55px rgba(57, 255, 136, 0.12);
}

@keyframes cardBreath {
  0% {
    transform: translateY(0) scale(1);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 rgba(57, 255, 136, 0);
  }

  50% {
    transform: translateY(-5px) scale(1.012);
    border-color: rgba(57, 255, 136, 0.24);
    box-shadow: 0 16px 45px rgba(57, 255, 136, 0.08);
  }

  100% {
    transform: translateY(0) scale(1);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 rgba(57, 255, 136, 0);
  }
}

/* Respeta usuarios con animaciones reducidas */

@media (prefers-reduced-motion: reduce) {
  .hero-v2 .hero-actions .btn,
  .hero-points div {
    animation: none;
  }
}/* Movimiento / respiración para botones y cards del hero */

.hero-v2 .hero-actions .btn {
  animation: buttonBreath 2.8s ease-in-out infinite;
  will-change: transform, box-shadow;
}

.hero-v2 .hero-actions .btn-secondary {
  animation-delay: 0.35s;
}

.hero-v2 .hero-actions .btn:hover {
  animation-play-state: paused;
  transform: translateY(-4px) scale(1.025);
}

@keyframes buttonBreath {
  0% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-3px) scale(1.018);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

/* Glow especial para el botón principal */

.hero-v2 .hero-actions .btn-primary {
  animation-name: buttonBreath, greenPulse;
  animation-duration: 2.8s, 2.8s;
  animation-timing-function: ease-in-out, ease-in-out;
  animation-iteration-count: infinite, infinite;
}

@keyframes greenPulse {
  0% {
    box-shadow: 0 0 28px rgba(57, 255, 136, 0.22);
  }

  50% {
    box-shadow: 0 0 48px rgba(57, 255, 136, 0.42);
  }

  100% {
    box-shadow: 0 0 28px rgba(57, 255, 136, 0.22);
  }
}

/* Respiración para las 3 cards de abajo */

.hero-points div {
  animation: cardBreath 4s ease-in-out infinite;
  will-change: transform, border-color, box-shadow;
}

.hero-points div:nth-child(1) {
  animation-delay: 0s;
}

.hero-points div:nth-child(2) {
  animation-delay: 0.35s;
}

.hero-points div:nth-child(3) {
  animation-delay: 0.7s;
}

.hero-points div:hover {
  animation-play-state: paused;
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(57, 255, 136, 0.42);
  box-shadow: 0 18px 55px rgba(57, 255, 136, 0.12);
}

@keyframes cardBreath {
  0% {
    transform: translateY(0) scale(1);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 rgba(57, 255, 136, 0);
  }

  50% {
    transform: translateY(-5px) scale(1.012);
    border-color: rgba(57, 255, 136, 0.24);
    box-shadow: 0 16px 45px rgba(57, 255, 136, 0.08);
  }

  100% {
    transform: translateY(0) scale(1);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 rgba(57, 255, 136, 0);
  }
}

/* Respeta usuarios con animaciones reducidas */

@media (prefers-reduced-motion: reduce) {
  .hero-v2 .hero-actions .btn,
  .hero-points div {
    animation: none;
  }
}/* OPTIMIZACIÓN DE MOVIMIENTOS - Growth Agency */

/* Sacar movimiento de las 3 cards del hero */
.hero-points div {
  animation: none !important;
  transform: none;
  will-change: auto;
}

/* Mantener hover suave en las cards, sin animación constante */
.hero-points div:hover {
  transform: translateY(-5px);
  border-color: rgba(57, 255, 136, 0.32);
  box-shadow: 0 16px 42px rgba(57, 255, 136, 0.08);
}

/* Movimiento suave solo para los 2 botones principales */
.hero-v2 .hero-actions .btn {
  animation: softButtonFloat 3.2s ease-in-out infinite !important;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Delay para que no respiren iguales */
.hero-v2 .hero-actions .btn-secondary {
  animation-delay: 0.45s !important;
}

/* Hover premium */
.hero-v2 .hero-actions .btn:hover {
  animation-play-state: paused !important;
  transform: translateY(-4px) scale(1.02);
}

/* Animación liviana: solo transform, más fluida */
@keyframes softButtonFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -4px, 0) scale(1.015);
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

/* Glow del botón verde más liviano */
.hero-v2 .hero-actions .btn-primary {
  box-shadow: 0 0 30px rgba(57, 255, 136, 0.28);
}

.hero-v2 .hero-actions .btn-primary:hover {
  box-shadow: 0 0 44px rgba(57, 255, 136, 0.38);
}

/* Reducir animaciones pesadas del fondo */
.glow {
  opacity: 0.24;
  filter: blur(95px);
}

/* Hacer el panel derecho más fluido */
.growth-panel,
.phone-screen {
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Suavizar movimiento del panel principal */
.growth-panel {
  animation-duration: 7s !important;
}

/* Suavizar movimiento del mockup del celular */
.phone-screen {
  animation-duration: 7s !important;
}

/* Evitar animaciones trabadas en la barra */
.conversion-line span {
  animation-duration: 4s !important;
}

/* Si el navegador está pidiendo reducir movimiento */
@media (prefers-reduced-motion: reduce) {
  .hero-v2 .hero-actions .btn,
  .growth-panel,
  .phone-screen,
  .conversion-line span,
  .glow {
    animation: none !important;
  }
}/* ===== MEJORA DE LEGIBILIDAD EN LA SECCIÓN "POR QUÉ GROWTH AGENCY" ===== */

.split-content h2 {
  max-width: 680px;
  font-size: clamp(34px, 4.7vw, 66px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.split-content p {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.75;
}

.check-list {
  margin-top: 34px;
  gap: 16px;
}

.check-list div {
  font-size: 15px;
  line-height: 1.45;
}

/* ===== CELULAR CON PREVIEW DE WEB ===== */

.phone-screen.website-preview {
  width: 300px;
  height: 590px;
  padding: 18px 16px 16px;
  border: 10px solid #101711;
  border-radius: 42px;
  background:
    radial-gradient(circle at top, rgba(57, 255, 136, 0.16), transparent 34%),
    linear-gradient(180deg, #08110b 0%, #050806 100%);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.55);
  animation: phoneFloat 7s ease-in-out infinite alternate;
  overflow: hidden;
  position: relative;
}

.phone-screen.website-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57, 255, 136, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 255, 136, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.5;
  pointer-events: none;
}

.phone-screen.website-preview > * {
  position: relative;
  z-index: 2;
}

.preview-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 2px 2px 18px;
}

.preview-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.preview-brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(57, 255, 136, 0.45);
}

.preview-menu {
  width: 28px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.preview-hero-card {
  padding: 16px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(57, 255, 136, 0.18), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(57, 255, 136, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  margin-bottom: 16px;
}

.preview-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(57, 255, 136, 0.12);
  border: 1px solid rgba(57, 255, 136, 0.18);
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  margin-bottom: 12px;
}

.preview-hero-card h4 {
  font-size: 24px;
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: var(--white);
  margin-bottom: 10px;
}

.preview-hero-card p {
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: 14px;
}

.preview-cta {
  width: 100%;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), #48ff9a);
  color: #031008;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 0 20px rgba(57, 255, 136, 0.22);
}

.preview-section-title {
  width: 72%;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  margin: 0 0 14px;
}

.preview-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.preview-service-card {
  padding: 12px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.preview-service-icon {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: rgba(57, 255, 136, 0.14);
  border: 1px solid rgba(57, 255, 136, 0.18);
  margin-bottom: 12px;
}

.preview-service-line {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.preview-service-line.line-1 {
  width: 88%;
  margin-bottom: 8px;
}

.preview-service-line.line-2 {
  width: 60%;
}

.preview-bottom-card {
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(57, 255, 136, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(57, 255, 136, 0.04));
}

.preview-bottom-line {
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.preview-bottom-line.big {
  width: 80%;
  margin-bottom: 10px;
}

.preview-bottom-line.small {
  width: 56%;
  margin-bottom: 14px;
}

.preview-bottom-button {
  width: 110px;
  height: 34px;
  border-radius: 999px;
  background: rgba(57, 255, 136, 0.92);
  box-shadow: 0 0 18px rgba(57, 255, 136, 0.18);
}

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

@media (max-width: 980px) {
  .split-content h2 {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .split-content h2 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.04em;
  }

  .split-content p {
    font-size: 16px;
  }

  .phone-screen.website-preview {
    width: 255px;
    height: 520px;
    padding: 16px 14px 14px;
  }

  .preview-hero-card h4 {
    font-size: 20px;
  }

  .preview-services {
    grid-template-columns: 1fr;
  }
}/* Logos en botones de WhatsApp e Instagram */

.has-social-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
}

.social-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 18px;
}

.social-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Header */
.nav-cta .social-icon {
  width: 16px;
  height: 16px;
  flex-basis: 16px;
}

/* Botones principales */
.btn .social-icon {
  width: 18px;
  height: 18px;
  flex-basis: 18px;
}

/* Botones flotantes */
.float-btn .social-icon {
  width: 19px;
  height: 19px;
  flex-basis: 19px;
}

/* Footer */
.footer-links a.has-social-icon {
  gap: 7px !important;
}

.footer-links .social-icon {
  width: 16px;
  height: 16px;
  flex-basis: 16px;
}/* Más espacio entre la lista y el botón en la card de E-commerce */
.pricing-card.featured ul {
  margin-bottom: 26px;
}

/* Opcional: un poquito más de aire general en los botones de pricing */
.pricing-card .btn-pricing {
  margin-top: auto;
}/* Mejor legibilidad en el bloque CTA final */

.cta-section h2 {
  max-width: 720px;
  font-size: clamp(38px, 4.8vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.cta-section p {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.75;
  margin-top: 22px;
}

.cta-section {
  align-items: center;
  gap: 42px;
}/* ============================= */
/* PÁGINA AISLADA DE PLANES */
/* ============================= */

.plans-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72vh;
  padding: 170px 0 80px;
  display: grid;
  align-items: center;
}

.plans-hero-content {
  max-width: 900px;
}

.plans-hero h1 {
  max-width: 900px;
  font-size: clamp(48px, 6.3vw, 88px);
  line-height: 1.03;
  letter-spacing: -0.06em;
  font-weight: 900;
}

.plans-hero p {
  max-width: 720px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.plans-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.plans-price-section {
  padding-top: 70px;
}

.plans-price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.plan-mini-card {
  min-height: 260px;
  padding: 25px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top left, rgba(57, 255, 136, 0.08), transparent 44%),
    rgba(255, 255, 255, 0.045);
  transition: 0.28s ease;
}

.plan-mini-card:hover {
  transform: translateY(-7px);
  border-color: rgba(57, 255, 136, 0.35);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26);
}

.plan-mini-card.highlighted {
  border-color: rgba(57, 255, 136, 0.54);
  background:
    radial-gradient(circle at top right, rgba(57, 255, 136, 0.17), transparent 45%),
    rgba(57, 255, 136, 0.055);
}

.plan-mini-card h3 {
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.plan-mini-card strong {
  display: block;
  font-size: 29px;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
  font-weight: 600;
}

.plan-mini-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.plan-mini-card li {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.plan-mini-card li::before {
  content: "+";
  color: var(--green);
  font-weight: 900;
  margin-right: 7px;
}

/* Creativos */

.creative-section {
  padding-top: 90px;
}

.creative-box {
  padding: 42px;
  border-radius: 32px;
  border: 1px solid rgba(57, 255, 136, 0.22);
  background:
    radial-gradient(circle at top left, rgba(57, 255, 136, 0.1), transparent 42%),
    rgba(255, 255, 255, 0.045);
}

.creative-box-heading h3,
.whatsapp-automation-box h3 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.055em;
  margin-bottom: 14px;
}

.creative-box-heading p,
.whatsapp-automation-box p {
  color: var(--muted);
  line-height: 1.65;
  max-width: 780px;
}

.creative-pack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.creative-pack-grid article {
  position: relative;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.18);
}

.creative-pack-grid article.popular-creative {
  border-color: rgba(57, 255, 136, 0.62);
  background: rgba(57, 255, 136, 0.055);
}

.creative-pack-grid span {
  display: block;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 8px;
}

.creative-pack-grid strong {
  display: block;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.creative-pack-grid ul {
  list-style: none;
  display: grid;
  gap: 7px;
}

.creative-pack-grid li {
  color: var(--muted);
  font-size: 13px;
}

.creative-pack-grid li::before {
  content: "+";
  color: var(--green);
  font-weight: 900;
  margin-right: 7px;
}

.creative-pack-grid .popular {
  position: absolute;
  top: -12px;
  right: 20px;
}

.whatsapp-automation-box {
  margin-top: 34px;
  padding: 42px;
  border-radius: 32px;
  border: 1px solid rgba(57, 255, 136, 0.52);
  background:
    radial-gradient(circle at top right, rgba(57, 255, 136, 0.14), transparent 42%),
    rgba(57, 255, 136, 0.055);
}

.whatsapp-automation-box ul {
  margin-top: 26px;
  list-style: none;
  display: grid;
  gap: 10px;
}

.whatsapp-automation-box li {
  color: var(--muted-2);
  font-size: 15px;
}

.whatsapp-automation-box li::before {
  content: "+";
  color: var(--green);
  font-weight: 900;
  margin-right: 7px;
}

/* Packs page */

.packs-page-section {
  padding-top: 90px;
}

.packs-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.pack-page-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top left, rgba(57, 255, 136, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.045);
  transition: 0.28s ease;
}

.pack-page-card:hover {
  transform: translateY(-8px);
  border-color: rgba(57, 255, 136, 0.35);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.3);
}

.pack-page-card.featured-pack {
  border-color: rgba(57, 255, 136, 0.58);
  background:
    radial-gradient(circle at top right, rgba(57, 255, 136, 0.16), transparent 46%),
    rgba(57, 255, 136, 0.055);
  transform: translateY(-14px);
}

.pack-badge {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(57, 255, 136, 0.1);
  border: 1px solid rgba(57, 255, 136, 0.22);
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.pack-popular {
  width: fit-content;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--green);
  color: #031008;
  font-size: 11px;
  font-weight: 950;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pack-page-card h3 {
  font-size: 31px;
  line-height: 1.05;
  letter-spacing: -0.06em;
  margin-bottom: 14px;
}

.pack-page-card p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

.pack-page-card .pack-includes {
  margin-top: 24px;
}

.pack-page-card .btn {
  margin-top: auto;
}

/* Responsive página planes */

@media (max-width: 1100px) {
  .plans-price-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .packs-page-grid {
    grid-template-columns: 1fr;
  }

  .pack-page-card.featured-pack {
    transform: none;
  }
}

@media (max-width: 760px) {
  .plans-hero {
    width: calc(100% - 24px);
    min-height: auto;
    padding: 140px 0 50px;
  }

  .plans-hero h1 {
    font-size: clamp(42px, 12vw, 58px);
    line-height: 1.05;
  }

  .plans-hero p {
    font-size: 16px;
  }

  .plans-hero-actions {
    display: grid;
  }

  .plans-price-grid,
  .creative-pack-grid {
    grid-template-columns: 1fr;
  }

  .plan-mini-card {
    min-height: auto;
  }

  .creative-box,
  .whatsapp-automation-box {
    padding: 26px;
  }

  .pack-page-card {
    padding: 24px;
  }

  .pack-page-card h3 {
    font-size: 28px;
  }
}/* ============================= */
/* FIX PACKS - MÁS AIRE Y LEGIBILIDAD */
/* ============================= */

#packs {
  scroll-margin-top: 130px;
}

.packs-page-section {
  padding-top: 120px;
}

.packs-page-section .section-heading {
  margin-bottom: 64px;
}

.packs-page-grid {
  grid-template-columns: 1fr !important;
  gap: 34px !important;
  max-width: 1080px;
  margin: 0 auto;
}

.pack-page-card,
.pack-page-card.featured-pack {
  display: grid !important;
  grid-template-columns: 0.9fr 1.1fr;
  column-gap: 42px;
  row-gap: 16px;
  padding: 42px !important;
  border-radius: 34px;
  min-height: auto;
  transform: none !important;
}

.pack-page-card:hover,
.pack-page-card.featured-pack:hover {
  transform: translateY(-6px) !important;
}

/* Columna izquierda */
.pack-page-card > .pack-popular,
.pack-page-card > .pack-badge,
.pack-page-card > h3,
.pack-page-card > p,
.pack-page-card > .pack-recommended,
.pack-page-card > .btn {
  grid-column: 1;
}

/* Título más legible */
.pack-page-card h3 {
  font-size: clamp(34px, 4vw, 48px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.045em !important;
  margin-bottom: 12px;
}

.pack-page-card p {
  font-size: 16px !important;
  line-height: 1.7 !important;
  max-width: 420px;
}

/* Caja de incluye a la derecha */
.pack-page-card .pack-includes {
  grid-column: 2;
  grid-row: 1 / span 6;
  margin-top: 0 !important;
  padding: 30px !important;
  border-radius: 28px;
  border: 1px solid rgba(57, 255, 136, 0.28);
  background:
    radial-gradient(circle at top left, rgba(57, 255, 136, 0.12), transparent 45%),
    rgba(0, 0, 0, 0.28);
}

/* Sacar bullets normales y poner + verde */
.pack-includes ul {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0 !important;
  display: grid;
  gap: 11px;
}

.pack-includes h4 {
  color: var(--green) !important;
  font-size: 28px !important;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}

.pack-includes li {
  color: var(--muted-2) !important;
  font-size: 15px !important;
  line-height: 1.5 !important;
  padding-left: 18px;
  position: relative;
}

.pack-includes li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 900;
}

/* Caja recomendación / objetivo */
.pack-page-card .pack-recommended {
  margin-top: 22px;
  margin-bottom: 8px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.pack-page-card .pack-recommended strong {
  display: block;
  font-size: 17px;
  margin-bottom: 8px;
}

.pack-page-card .pack-recommended span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* Botones más prolijos */
.pack-page-card .btn {
  width: 100%;
  margin-top: 18px !important;
}

/* Badges más limpias */
.pack-page-card .pack-badge,
.pack-page-card .pack-popular {
  margin-bottom: 18px;
}

/* Responsive */
@media (max-width: 900px) {
  .pack-page-card,
  .pack-page-card.featured-pack {
    grid-template-columns: 1fr !important;
    padding: 28px !important;
  }

  .pack-page-card > .pack-popular,
  .pack-page-card > .pack-badge,
  .pack-page-card > h3,
  .pack-page-card > p,
  .pack-page-card > .pack-recommended,
  .pack-page-card > .btn,
  .pack-page-card .pack-includes {
    grid-column: 1;
    grid-row: auto;
  }

  .pack-page-card .pack-includes {
    margin-top: 20px !important;
    padding: 24px !important;
  }

  .pack-page-card h3 {
    font-size: 32px !important;
  }

  .pack-page-card p {
    max-width: 100%;
  }
}/* Footer mejorado */

.footer-v2 {
  display: block;
  padding: 52px 0 130px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 36px;
  padding-bottom: 32px;
}

.footer-info p {
  color: var(--muted);
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.6;
}

.footer-v2 .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 24px;
  max-width: 460px;
}

.footer-v2 .footer-links a {
  color: var(--muted-2);
  font-size: 15px;
  font-weight: 600;
  transition: 0.25s ease;
}

.footer-v2 .footer-links a:hover {
  color: var(--green);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.footer-bottom p:first-child {
  color: var(--muted-2);
  font-weight: 600;
}

/* Responsive footer */

@media (max-width: 760px) {
  .footer-v2 {
    padding-bottom: 130px;
  }

  .footer-main {
    flex-direction: column;
    gap: 26px;
  }

  .footer-v2 .footer-links {
    justify-content: flex-start;
    gap: 14px 18px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}