/* ============================================
   CSS VARIABLES — PALETA GLOBAL
============================================= */
:root {
  --color-bg-cream: #F5EDD8;
  --color-bg-dark: #2C1A0B;
  --color-bg-darker: #1a0f05;
  --color-accent: #C4622D;
  --color-accent-dark: #8B3A1A;
  --color-text-light: #F5EDD8;
  --color-text-dark: #2C1A0B;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Jost', sans-serif;
  --max-width: 1100px;
  --max-width-lg: 1200px;
  --section-padding: 100px 60px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg-cream);
  color: var(--color-text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

/* ============================================
   TIPOGRAFÍA UTILITARIA
============================================= */
.heading-xl {
  font-family: var(--font-heading);
  font-size: clamp(42px, 5.5vw, 64px);
  line-height: 1.15;
  font-weight: 400;
}

.heading-lg {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4.5vw, 46px);
  font-weight: 400;
  line-height: 1.3;
}

.heading-md {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 400;
  line-height: 1.3;
}

.label {
  font-family: var(--font-body);
  font-size: 15px;
  letter-spacing: 4px;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
}

.body-text {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.75;
  font-weight: 400;
}

.body-sm {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
}

/* ============================================
   LAYOUT CONTAINERS
============================================= */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.container--lg {
  max-width: var(--max-width-lg);
}

.section {
  padding: var(--section-padding);
}

/* ============================================
   BOTONES
============================================= */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  padding: 18px 40px;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-text-light);
}

.btn--outline {
  background: transparent;
  border: 1px solid rgba(245, 237, 216, 0.25);
  color: var(--color-text-light);
}

.btn--outline-dark {
  background: transparent;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
}

@media (hover: hover) {
  .btn--primary:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
  }
  .btn--outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
  }
  .btn--outline-dark:hover {
    background: var(--color-accent);
    color: var(--color-text-light);
  }
}

/* ============================================
   ANIMATIONS
============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes lineGrow {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ============================================
   HEADER / NAV
============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(44, 26, 11, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  line-height: 1;
}

.nav-logo__bar {
  width: 3px;
  height: 44px;
  background: var(--color-accent);
  flex-shrink: 0;
}

.nav-logo__name {
  display: block;
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--color-text-light);
  letter-spacing: 3px;
  font-weight: 700;
  line-height: 1;
}

.nav-logo__sub {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--color-accent);
  letter-spacing: 6px;
  font-weight: 500;
  margin-top: 4px;
}

.nav-logo__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 4px;
}

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

.nav-links a {
  font-size: 15px;
  color: var(--color-text-light);
  letter-spacing: 0.5px;
  font-weight: 400;
  opacity: 0.85;
  transition: opacity 0.3s;
}

@media (hover: hover) {
  .nav-links a:hover { opacity: 1; }
}

.nav-links__cta {
  opacity: 1 !important;
  background: var(--color-accent);
  padding: 10px 22px;
  font-weight: 500 !important;
  transition: background 0.3s !important;
}

@media (hover: hover) {
  .nav-links__cta:hover { background: var(--color-accent-dark); }
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(44, 26, 11, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 4px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 16px;
  color: var(--color-text-light);
  padding: 14px 0;
  border-bottom: 1px solid rgba(196, 98, 45, 0.15);
  font-weight: 400;
}

.mobile-menu__cta {
  display: block;
  text-align: center;
  background: var(--color-accent);
  padding: 14px 22px;
  font-weight: 500;
  margin-top: 8px;
  border-bottom: none !important;
}

@media (max-width: 968px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ============================================
   FLOATING BUTTONS
============================================= */
.floating-contact {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 99;
  width: 60px;
  height: 60px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(196, 98, 45, 0.45);
  animation: pulse 2.4s ease-in-out infinite;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

/* WhatsApp brand — verde oficial */
.floating-contact--whatsapp {
  background: #25D366;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.floating-contact--whatsapp::after {
  content: "Escribinos";
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 8px 14px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}

@media (hover: hover) {
  .floating-contact--whatsapp:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(-4px);
  }
}

.floating-top {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 99;
  width: 56px;
  height: 56px;
  background: var(--color-bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(44, 26, 11, 0.4);
  transition: var(--transition);
}

@media (hover: hover) {
  .floating-contact:hover { transform: translateY(-3px) scale(1.05); }
  .floating-contact--whatsapp:hover { background: #1ebe57; }
  .floating-top:hover { background: var(--color-accent-dark); transform: translateY(-3px); }
}

/* ============================================
   SECTION: HERO
============================================= */
.hero {
  min-height: 100vh;
  background: var(--color-bg-dark);
  display: flex;
  align-items: center;
  padding: 100px 60px 80px;
  position: relative;
  overflow: hidden;
}

.hero__line {
  position: absolute;
  left: 50px;
  top: 80px;
  bottom: 80px;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--color-accent), transparent);
  animation: lineGrow 1.5s ease-out;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: var(--max-width-lg);
  margin: 0 auto;
  width: 100%;
  align-items: center;
  z-index: 1;
  position: relative;
}

.hero__content {
  animation: fadeUp 0.8s ease-out;
}

.hero__tagline {
  font-size: 15px;
  color: var(--color-accent);
  letter-spacing: 5px;
  font-weight: 600;
  margin-bottom: 28px;
}

.hero__title {
  color: var(--color-text-light);
}

.hero__title--accent {
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 28px;
}

.hero__desc {
  color: var(--color-text-light);
  opacity: 0.7;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.hero__note {
  font-size: 14px;
  color: var(--color-text-light);
  opacity: 0.6;
  margin-top: 14px;
  font-weight: 400;
}

.hero__image-wrap {
  position: relative;
  animation: fadeUp 0.8s ease-out 0.2s both;
}

.hero__image {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.hero__badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 160px;
  height: 160px;
  background: var(--color-accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.hero__badge-number {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--color-text-light);
  font-weight: 700;
}

.hero__badge-label {
  font-size: 11px;
  color: var(--color-text-light);
  letter-spacing: 2px;
  text-align: center;
}

/* Particles canvas */
.particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.3;
}

/* ============================================
   SECTION: STATS BAR
============================================= */
.stats-bar {
  background: var(--color-accent);
  padding: 36px 60px;
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.stats-bar__item {
  text-align: center;
}

.stats-bar__number {
  font-family: var(--font-heading);
  font-size: 44px;
  color: var(--color-text-light);
  font-weight: 700;
}

.stats-bar__label {
  font-size: 14px;
  color: var(--color-text-light);
  opacity: 0.95;
  letter-spacing: 2px;
  font-weight: 500;
  margin-top: 6px;
}

.stats-bar__divider {
  width: 1px;
  background: rgba(245, 237, 216, 0.25);
}

/* ============================================
   SECTION: SOBRE NOSOTROS
============================================= */
.about {
  background: var(--color-bg-cream);
  padding: 120px 60px;
}

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

.about__image-wrap {
  position: relative;
}

.about__image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about__corner {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  border: 3px solid var(--color-accent);
}

.about__highlight {
  color: var(--color-accent);
  font-weight: 600;
}

.about__footer-text {
  font-size: 16px;
  color: var(--color-accent-dark);
  line-height: 1.7;
  font-weight: 400;
}

/* ============================================
   SECTION: DOLOR (PAIN POINTS)
============================================= */
.dolor {
  background: var(--color-bg-dark);
}

.dolor__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.dolor__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  background: rgba(245, 237, 216, 0.04);
  border-left: 3px solid var(--color-accent);
  transition: background 0.3s;
}

.dolor__item--full {
  grid-column: 1 / -1;
}

@media (hover: hover) {
  .dolor__item:hover { background: rgba(245, 237, 216, 0.08); }
}

.dolor__x {
  font-size: 20px;
  color: var(--color-accent);
  font-weight: 700;
}

.dolor__text {
  font-size: 17px;
  color: var(--color-text-light);
  line-height: 1.5;
  font-weight: 400;
}

.dolor__cta {
  text-align: center;
  margin-top: 40px;
}

.dolor__cta p {
  font-size: 17px;
  color: var(--color-text-light);
}

/* ============================================
   SECTION: PROCESO (SERVICES)
============================================= */
.proceso {
  background: var(--color-bg-cream);
}

.proceso__grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

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

.proceso__card {
  background: var(--color-bg-dark);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  will-change: transform;
}

.proceso__card--accent {
  background: var(--color-accent);
}

@media (hover: hover) {
  .proceso__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(44, 26, 11, 0.25);
  }
  .proceso__card--accent:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(196, 98, 45, 0.35);
  }
}

.proceso__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.proceso__card-body {
  padding: 28px;
}

.proceso__card-number {
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--color-accent);
  opacity: 0.3;
  margin-bottom: 8px;
}

.proceso__card--accent .proceso__card-number {
  color: var(--color-text-light);
  opacity: 0.4;
}

.proceso__card-title {
  font-size: 20px;
  color: var(--color-text-light);
  font-weight: 600;
  margin-bottom: 10px;
}

.proceso__card-desc {
  font-size: 16px;
  color: var(--color-text-light);
  opacity: 0.82;
  line-height: 1.7;
  font-weight: 400;
}

.proceso__card--accent .proceso__card-desc {
  opacity: 0.9;
}

.proceso__card-row {
  display: flex;
  gap: 24px;
  padding: 32px;
  align-items: center;
}

.proceso__card-row .proceso__card-number {
  min-width: 48px;
  margin-bottom: 0;
}

.proceso__card-row .proceso__card-title {
  margin-bottom: 6px;
}

/* ============================================
   SECTION: POR QUÉ ELEGIRNOS
============================================= */
.porque {
  background: var(--color-bg-dark);
}

.porque__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 80px;
  align-items: center;
}

.porque__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.porque__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.porque__item-number {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--color-text-light);
}

.porque__item-title {
  font-size: 19px;
  color: var(--color-text-light);
  font-weight: 600;
  margin-bottom: 6px;
}

.porque__item-desc {
  font-size: 16px;
  color: var(--color-text-light);
  opacity: 0.8;
  line-height: 1.65;
  font-weight: 400;
}

.porque__image {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

/* ============================================
   SECTION: TESTIMONIOS
============================================= */
.testimonios {
  background: var(--color-bg-cream);
}

.testimonios__tags {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

.testimonios__tag {
  font-size: 14px;
  color: var(--color-accent-dark);
  font-weight: 500;
  padding: 8px 18px;
  border: 1px solid var(--color-accent-dark);
  letter-spacing: 0.5px;
}

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

.testimonios__card {
  background: var(--color-bg-dark);
  padding: 36px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (hover: hover) {
  .testimonios__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(44, 26, 11, 0.3);
  }
}

.testimonios__quote-mark {
  font-family: var(--font-heading);
  font-size: 64px;
  color: var(--color-accent);
  opacity: 0.25;
  position: absolute;
  top: 12px;
  left: 20px;
  line-height: 1;
}

.testimonios__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  padding-top: 16px;
  color: var(--color-accent);
  font-size: 16px;
}

.testimonios__text {
  font-family: var(--font-heading);
  font-size: 19px;
  color: var(--color-text-light);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonios__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonios__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--color-text-light);
}

.testimonios__author-name {
  font-size: 15px;
  color: var(--color-accent);
  font-weight: 500;
}

.testimonios__placeholder {
  font-size: 9px;
  color: var(--color-text-light);
  opacity: 0.25;
  margin-top: 12px;
  letter-spacing: 1px;
}

/* ============================================
   SECTION: PLANES
============================================= */
.planes {
  background: var(--color-bg-dark);
}

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

.planes__card {
  border: 1px solid rgba(196, 98, 45, 0.25);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

@media (hover: hover) {
  .planes__card:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(44, 26, 11, 0.3);
  }
}

.planes__card--featured {
  border: 2px solid var(--color-accent);
  transform: scale(1.02);
  position: relative;
}

@media (hover: hover) {
  .planes__card--featured:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 12px 32px rgba(196, 98, 45, 0.3);
  }
}

.planes__card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: var(--color-text-light);
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
  padding: 6px 18px;
  white-space: nowrap;
}

.planes__card-name {
  font-size: 14px;
  color: var(--color-accent);
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 10px;
}

.planes__card-subtitle {
  font-size: 16px;
  color: var(--color-text-light);
  opacity: 0.75;
  font-weight: 400;
  margin-bottom: 24px;
}

.planes__card-price {
  font-family: var(--font-heading);
  font-size: 44px;
  color: var(--color-text-light);
  font-weight: 700;
}

.planes__card-price span {
  font-size: 22px;
  opacity: 0.6;
}

.planes__card-period {
  font-size: 14px;
  color: var(--color-text-light);
  opacity: 0.65;
  font-weight: 400;
  margin-bottom: 28px;
}

.planes__card-divider {
  width: 100%;
  height: 1px;
  background: rgba(196, 98, 45, 0.2);
  margin-bottom: 24px;
}

.planes__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.planes__feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.planes__feature-check {
  color: var(--color-accent);
  font-size: 15px;
  font-weight: 700;
}

.planes__feature-text {
  font-size: 16px;
  color: var(--color-text-light);
  font-weight: 400;
}

.planes__card-btn {
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  padding: 16px;
  margin-top: 28px;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.planes__card-btn--outline {
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  background: transparent;
}

.planes__card-btn--filled {
  background: var(--color-accent);
  color: var(--color-text-light);
  border: none;
}

@media (hover: hover) {
  .planes__card-btn--outline:hover {
    background: var(--color-accent);
    color: var(--color-text-light);
  }
  .planes__card-btn--filled:hover {
    background: var(--color-accent-dark);
  }
}

.planes__included {
  margin-top: 36px;
  padding: 24px;
  border: 1px solid rgba(196, 98, 45, 0.15);
  text-align: center;
}

.planes__included-items {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.planes__included-item {
  font-size: 15px;
  color: var(--color-text-light);
  font-weight: 400;
}

.planes__included-dot {
  color: var(--color-accent);
  opacity: 0.3;
}

/* ============================================
   SECTION: GARANTÍA
============================================= */
.garantia {
  background: var(--color-accent);
}

.garantia__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.garantia__item {
  text-align: center;
}

.garantia__icon {
  width: 52px;
  height: 52px;
  border: 2px solid var(--color-text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--color-text-light);
}

.garantia__title {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--color-text-light);
  margin-bottom: 12px;
  font-weight: 700;
}

.garantia__desc {
  font-size: 17px;
  color: var(--color-text-light);
  opacity: 0.95;
  line-height: 1.7;
  font-weight: 400;
}

/* ============================================
   SECTION: FAQ
============================================= */
.faq {
  background: var(--color-bg-cream);
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px;
  align-items: flex-start;
  max-width: 800px;
  margin: 0 auto;
}

.faq__image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  margin-top: 32px;
}

.faq__accordion {
  display: flex;
  flex-direction: column;
}

.faq__item {
  border-bottom: 1px solid rgba(44, 26, 11, 0.1);
  transition: var(--transition);
}

@media (hover: hover) {
  .faq__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(44, 26, 11, 0.12);
  }
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  cursor: pointer;
}

.faq__question-text {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--color-text-dark);
  line-height: 1.4;
  font-weight: 700;
}

.faq__question-icon {
  font-size: 22px;
  color: var(--color-accent);
  min-width: 24px;
  text-align: center;
  transition: transform 0.3s;
}

.faq__item.active .faq__question-icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding-bottom 0.4s ease;
}

.faq__item.active .faq__answer {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq__answer p {
  font-size: 16px;
  color: var(--color-text-dark);
  line-height: 1.75;
  font-weight: 400;
  padding-right: 24px;
  opacity: 0.85;
}

/* ============================================
   SECTION: CTA FINAL
============================================= */
.cta-final {
  background: var(--color-bg-dark);
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}

.cta-final__content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-final__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--color-text-light);
  line-height: 1.3;
  font-weight: 400;
  margin-bottom: 10px;
}

.cta-final__title--accent {
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 28px;
}

.cta-final__desc {
  color: var(--color-text-light);
  opacity: 0.6;
  margin-bottom: 40px;
}

.cta-final__note {
  font-size: 14px;
  color: var(--color-text-light);
  opacity: 0.6;
  margin-top: 14px;
  font-weight: 400;
}

.cta-final__ps {
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(196, 98, 45, 0.2);
  font-size: 16px;
  color: var(--color-text-light);
  line-height: 1.75;
  font-weight: 400;
  opacity: 0.85;
}

.cta-final__ps strong {
  font-weight: 500;
  opacity: 1;
}

/* ============================================
   FOOTER
============================================= */
.site-footer {
  background: var(--color-bg-darker);
  padding: 56px 60px 36px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 48px;
  margin-bottom: 40px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  line-height: 1;
}

.footer__logo-bar {
  width: 4px;
  height: 70px;
  background: var(--color-accent);
  flex-shrink: 0;
}

.footer__logo-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 44px;
  color: var(--color-text-light);
  letter-spacing: 5px;
  font-weight: 700;
  line-height: 1;
}

.footer__logo-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-accent);
  letter-spacing: 9px;
  font-weight: 500;
  margin-top: 8px;
}

.footer__logo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 6px;
}

.footer__desc {
  font-size: 14px;
  color: var(--color-text-light);
  opacity: 0.75;
  font-weight: 400;
  line-height: 1.7;
}

.footer__heading {
  font-size: 13px;
  color: var(--color-accent);
  letter-spacing: 2.5px;
  font-weight: 600;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  font-size: 14px;
  color: var(--color-text-light);
  opacity: 0.8;
  font-weight: 400;
  transition: opacity 0.3s, color 0.3s;
}

@media (hover: hover) {
  .footer__link:hover { opacity: 1; color: var(--color-accent); }
}

.footer__social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.85;
  transition: opacity 0.3s, transform 0.3s;
}

@media (hover: hover) {
  .footer__social-link:hover { opacity: 1; transform: translateX(3px); }
}

.footer__social-name {
  font-size: 14px;
  color: var(--color-text-light);
  font-weight: 400;
}

.footer__bottom {
  border-top: 1px solid rgba(196, 98, 45, 0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copyright,
.footer__credit {
  font-size: 13px;
  color: var(--color-text-light);
  opacity: 0.7;
  font-weight: 400;
}

.footer__credit a {
  color: var(--color-accent);
  opacity: 1;
  font-weight: 500;
  transition: text-decoration 0.3s;
}

@media (hover: hover) {
  .footer__credit a:hover { text-decoration: underline; }
}

/* ============================================
   RESPONSIVE — MOBILE OVERRIDES
============================================= */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px 24px;
  }

  .hero {
    padding: 100px 24px 60px;
  }

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

  .hero__line {
    display: none;
  }

  .hero__image {
    height: 300px;
  }

  .hero__badge {
    width: 120px;
    height: 120px;
    bottom: -10px;
    right: -10px;
  }

  .hero__badge-number {
    font-size: 28px;
  }

  .about {
    padding: 80px 24px;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__image {
    height: 280px;
  }

  .porque__image {
    height: 350px;
  }

  .porque__grid {
    gap: 48px;
  }

  .stats-bar {
    gap: 32px;
    padding: 28px 24px;
  }

  .stats-bar__divider {
    display: none;
  }

  .planes__card--featured {
    transform: none;
  }

  @media (hover: hover) {
    .planes__card--featured:hover {
      transform: translateY(-5px);
    }
  }

  .footer__logo-name {
    font-size: 32px;
  }

  .footer__logo-sub {
    font-size: 16px;
  }

  /* Footer — legibilidad mobile */
  .footer__grid {
    gap: 36px;
    margin-bottom: 32px;
  }

  .footer__desc {
    font-size: 15px;
    opacity: 0.85;
  }

  .footer__heading {
    font-size: 13px;
    margin-bottom: 14px;
  }

  .footer__link,
  .footer__social-name {
    font-size: 15px;
    opacity: 0.9;
  }

  .footer__bottom {
    justify-content: center;
    text-align: center;
    gap: 8px;
  }

  .footer__copyright,
  .footer__credit {
    font-size: 13px;
    opacity: 0.85;
  }

  /* Botón WhatsApp — unești más chico y con margen seguro en mobile */
  .floating-contact {
    width: 54px;
    height: 54px;
    bottom: 20px;
    right: 20px;
  }

  .floating-contact svg {
    width: 26px;
    height: 26px;
  }

  .floating-top {
    width: 46px;
    height: 46px;
    bottom: 20px;
    left: 20px;
  }

  .floating-top svg {
    width: 18px;
    height: 18px;
  }

  .cta-final {
    padding: 80px 24px;
  }

  .site-header {
    padding: 14px 20px;
  }

  .nav-logo__name {
    font-size: 22px;
    letter-spacing: 2.5px;
  }

  .nav-logo__sub {
    font-size: 10px;
    letter-spacing: 4.5px;
  }

  .nav-logo__bar {
    height: 36px;
  }

  .site-footer {
    padding: 40px 24px 28px;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    text-align: center;
  }
}
