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

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --wine:       #561C24;
  --wine-deep:  #6D2932;
  --sand:       #C7B7A3;
  --cream:      #E8D8C4;

  --bg:         #190b0d;
  --bg2:        #210f12;
  --bg3:        #2a1316;

  --surface:    rgba(199,183,163,0.05);
  --surface2:   rgba(199,183,163,0.09);
  --border:     rgba(199,183,163,0.1);
  --border2:    rgba(199,183,163,0.18);

  --accent-dim: rgba(86,28,36,0.22);
  --accent-glow:rgba(86,28,36,0.4);

  --text:       #f0e5d8;
  --text-dim:   #b09a8a;
  --text-muted: #6e5e55;

  --radius:     18px;
  --radius-sm:  10px;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  
}

/* ===========================
   SCROLLBAR
=========================== */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--wine-deep); border-radius: 4px; }

/* ===========================
   NAVBAR
=========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s, border-bottom 0.4s, backdrop-filter 0.4s;
}

.nav.scrolled {
  background: rgba(25,11,13,0.9);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(24px);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.nav-logo em {
  font-style: italic;
  color: var(--sand);
}

.logo-dot {
  width: 7px; height: 7px;
  background: var(--wine);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--wine);
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 5px var(--wine); }
  50% { box-shadow: 0 0 16px var(--wine), 0 0 28px rgba(86,28,36,0.3); }
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-dim);
  font-size: 0.87rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color 0.25s;
}

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

.nav-cta {
  background: rgba(86,28,36,0.18) !important;
  color: var(--sand) !important;
  border: 1px solid rgba(86,28,36,0.45) !important;
  padding: 0.5rem 1.3rem;
  border-radius: 100px;
  transition: background 0.25s, box-shadow 0.25s !important;
}

.nav-cta:hover {
  background: rgba(86,28,36,0.38) !important;
  box-shadow: 0 0 20px rgba(86,28,36,0.28) !important;
  color: var(--cream) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 22px; height: 1.5px;
  background: var(--text);
  border-radius: 4px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1.2rem 2rem;
  gap: 0.4rem;
  background: rgba(25,11,13,0.97);
  border-top: 1px solid var(--border);
}

.mobile-menu a {
  color: var(--text-dim);
  text-decoration: none;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}

.mobile-menu a:hover { color: var(--sand); }
.mobile-menu.open { display: flex; }

/* ===========================
   HERO
=========================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
}

.orb1 {
  width: 550px; height: 550px;
  background: rgba(86,28,36,0.18);
  top: -180px; right: -80px;
  animation: drift1 14s ease-in-out infinite;
}

.orb2 {
  width: 380px; height: 380px;
  background: rgba(109,41,50,0.12);
  bottom: -80px; left: -80px;
  animation: drift2 17s ease-in-out infinite;
}

.orb3 {
  width: 280px; height: 280px;
  background: rgba(199,183,163,0.04);
  top: 45%; left: 38%;
  animation: drift3 20s ease-in-out infinite;
}

@keyframes drift1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-35px, 25px); }
}
@keyframes drift2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(25px, -35px); }
}
@keyframes drift3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-15px, 15px) scale(1.08); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(199,183,163,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199,183,163,0.022) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(ellipse 70% 55% at 65% 40%, black 20%, transparent 75%);
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--sand);
  background: rgba(199,183,163,0.07);
  border: 1px solid rgba(199,183,163,0.15);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-dot {
  width: 5px; height: 5px;
  background: var(--sand);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0em;
  margin-bottom: 1.3rem;
  color: var(--text);
}

.gradient-text {
  background: linear-gradient(135deg, var(--wine) 0%, #9e3f4a 40%, var(--sand) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.78;
  margin-bottom: 2.2rem;
  max-width: 400px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wine);
  color: var(--cream);
  text-decoration: none;
  padding: 0.85rem 1.8rem;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.87rem;
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.25s, box-shadow 0.25s, transform 0.15s;
  font-family: var(--font-body);
}

.btn-primary:hover {
  background: var(--wine-deep);
  box-shadow: 0 0 32px rgba(86,28,36,0.5), 0 4px 20px rgba(86,28,36,0.3);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.87rem;
  font-weight: 400;
  transition: color 0.2s;
  letter-spacing: 0.03em;
}

.btn-ghost:hover { color: var(--text-dim); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
}

.stat span {
  font-size: 0.73rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-top: 4px;
  display: block;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px; height: 34px;
  background: var(--border);
}

/* ===========================
   CHAT MOCKUP
=========================== */
.hero-visual { position: relative; }

.chat-mockup {
  background: rgba(33,15,18,0.92);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 60px rgba(86,28,36,0.12);
  backdrop-filter: blur(20px);
  max-width: 360px;
  margin: 0 auto;
  animation: float 7s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border);
  background: rgba(86,28,36,0.1);
}

.chat-avatar {
  width: 38px; height: 38px;
  background: rgba(86,28,36,0.28);
  border: 1px solid rgba(199,183,163,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sand);
  flex-shrink: 0;
}

.chat-name {
  font-weight: 600;
  font-size: 0.88rem;
  font-family: var(--font-display);
  color: var(--cream);
  letter-spacing: 0.02em;
}

.chat-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  color: #86efac;
}

.status-dot {
  width: 5px; height: 5px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

.chat-body {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  min-height: 200px;
}

.chat-msg { max-width: 82%; }

.chat-msg p {
  padding: 0.65rem 0.95rem;
  border-radius: 12px;
  font-size: 0.82rem;
  line-height: 1.55;
}

.chat-msg span {
  font-size: 0.62rem;
  color: var(--text-muted);
  margin-top: 3px;
  display: block;
}

.chat-msg.bot p {
  background: var(--surface2);
  border-radius: 4px 12px 12px 12px;
  color: var(--text);
}

.chat-msg.bot span { margin-left: 4px; }
.chat-msg.user { align-self: flex-end; }

.chat-msg.user p {
  background: var(--wine);
  border-radius: 12px 12px 4px 12px;
  color: var(--cream);
}

.chat-msg.user span { text-align: right; }

.typing-dots {
  display: flex;
  gap: 4px;
  padding: 0.65rem 0.95rem;
  background: var(--surface2);
  border-radius: 4px 12px 12px 12px;
  width: fit-content;
}

.typing-dots span {
  width: 6px; height: 6px;
  background: var(--text-muted);
  border-radius: 50%;
  animation: blink 1.2s infinite;
}

.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes blink {
  0%, 60%, 100% { opacity: 0.3; transform: scale(1); }
  30% { opacity: 1; transform: scale(1.2); }
}

.chat-input-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 1rem;
  border-top: 1px solid var(--border);
}

.chat-input-bar input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.5rem 1rem;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-family: var(--font-body);
  outline: none;
}

.chat-input-bar button {
  width: 34px; height: 34px;
  background: var(--wine);
  border: none;
  border-radius: 50%;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}

.chat-input-bar button:hover { background: var(--wine-deep); }

/* Float cards */
.float-card {
  position: absolute;
  background: rgba(33,15,18,0.92);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  padding: 0.72rem 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.45);
}

.float-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
}

.float-card small {
  font-size: 0.67rem;
  color: var(--text-muted);
}

.fc1 { right: -20px; top: 30px; animation: float 5s ease-in-out infinite 1s; }
.fc2 { left: -30px; bottom: 60px; animation: float 7s ease-in-out infinite 0.5s; }

/* Scroll hint */
.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: fadeUpDown 2.5s ease-in-out infinite;
}

.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, transparent, var(--wine-deep));
}

@keyframes fadeUpDown {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.85; transform: translateX(-50%) translateY(7px); }
}

/* ===========================
   SECTIONS
=========================== */
.section { padding: 6rem 2rem; position: relative; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--sand);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0em;
  margin-bottom: 1rem;
  color: var(--text);
}

.section-sub {
  color: var(--text-dim);
  font-size: 0.94rem;
  margin-bottom: 3rem;
  max-width: 480px;
  font-weight: 300;
}

/* ===========================
   SOMOS
=========================== */
#somos {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 50%, var(--bg) 100%);
}

.somos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3rem;
}

.somos-text .lead {
  font-size: 1.04rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 2.2rem;
  font-weight: 300;
}

.benefits {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.benefit-icon {
  width: 40px; height: 40px;
  background: rgba(86,28,36,0.18);
  border: 1px solid rgba(86,28,36,0.32);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sand);
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 0.2rem;
  font-size: 1.05rem;
  color: var(--cream);
  letter-spacing: 0.01em;
}

.benefit-item p {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 300;
}

/* CHART */
.chart-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
}

.chart-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chart-title span:first-child {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--cream);
  letter-spacing: 0.01em;
}

.chart-badge {
  background: rgba(86,28,36,0.22);
  border: 1px solid rgba(86,28,36,0.42);
  color: var(--sand);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

.chart-wrap { position: relative; }

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  height: 180px;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--border);
}

.bar-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  height: 100%;
}

.bar-group span {
  font-size: 0.67rem;
  color: var(--text-muted);
  margin-top: 6px;
  letter-spacing: 0.04em;
}

.bar-wrapper {
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  width: 100%;
  justify-content: center;
}

.bar-fill {
  width: 13px;
  border-radius: 4px 4px 0 0;
  height: 0;
  background: var(--color);
  transition: height 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.bar-fill.active {
  background: linear-gradient(to top, var(--wine), #a04050);
  box-shadow: 0 0 10px rgba(86,28,36,0.4);
}

.chart-legend {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  font-size: 0.72rem;
  color: var(--text-dim);
}

.chart-legend span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.leg-dot {
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 2px;
}

.chart-note {
  font-size: 0.67rem;
  color: var(--text-muted);
  margin-top: 1rem;
  font-style: italic;
}

/* ===========================
   PLANES
=========================== */
#planes { background: var(--bg); }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: center;
  margin-top: 1rem;
}

.plan-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
  position: relative;
}

.plan-card:hover {
  border-color: rgba(199,183,163,0.18);
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.plan-card.featured {
  background: linear-gradient(145deg, rgba(86,28,36,0.18) 0%, rgba(109,41,50,0.08) 100%);
  border-color: rgba(86,28,36,0.48);
  box-shadow: 0 0 60px rgba(86,28,36,0.12);
  transform: scale(1.04);
}

.plan-card.featured:hover {
  transform: scale(1.04) translateY(-5px);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--wine);
  color: var(--cream);
  font-size: 0.68rem;
  font-weight: 500;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.07em;
}

.plan-top .plan-icon {
  width: 46px; height: 46px;
  background: rgba(86,28,36,0.14);
  border: 1px solid rgba(86,28,36,0.28);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sand);
  margin-bottom: 1rem;
}

.plan-card.featured .plan-icon {
  background: rgba(86,28,36,0.28);
  border-color: rgba(199,183,163,0.18);
}

.plan-top h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--cream);
  letter-spacing: 0.01em;
}

.plan-top p {
  font-size: 0.84rem;
  color: var(--text-dim);
  line-height: 1.55;
  font-weight: 300;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.84rem;
  color: var(--text-dim);
  font-weight: 300;
}

.plan-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.87rem;
  font-weight: 500;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text-dim);
  letter-spacing: 0.04em;
  transition: all 0.25s;
}

.plan-btn:hover {
  border-color: rgba(199,183,163,0.22);
  color: var(--cream);
}

.featured-btn {
  background: var(--wine) !important;
  border-color: transparent !important;
  color: var(--cream) !important;
}

.featured-btn:hover {
  background: var(--wine-deep) !important;
  color: var(--cream) !important;
  box-shadow: 0 0 28px rgba(86,28,36,0.5);
}

/* ===========================
   CONTACTO
=========================== */
#contacto {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg3) 100%);
  position: relative;
  overflow: hidden;
}

#contacto::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: rgba(86,28,36,0.07);
  border-radius: 50%;
  filter: blur(130px);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.contact-info h2 { margin-bottom: 1rem; }

.contact-info p {
  color: var(--text-dim);
  font-size: 0.94rem;
  line-height: 1.78;
  margin-bottom: 2rem;
  font-weight: 300;
}

.contact-badges {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.cbadge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 300;
}

.glass-box {
  background: rgba(199,183,163,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 100px rgba(0,0,0,0.38);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  background: rgba(199,183,163,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(86,28,36,0.55);
  box-shadow: 0 0 0 3px rgba(86,28,36,0.1);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  font-weight: 300;
}

.full-width {
  width: 100%;
  justify-content: center;
  border-radius: var(--radius-sm);
  padding: 0.9rem;
  font-size: 0.9rem;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer p {
  font-size: 0.77rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* ===========================
   REVEAL ANIMATIONS
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.18s; }
.reveal-delay-3 { transition-delay: 0.28s; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .hero-content { gap: 2.5rem; }
  .somos-grid { gap: 3rem; }
  .contact-layout { gap: 3rem; }
}

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

  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { max-width: 100%; margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-badge { margin: 0 auto 1.5rem; }
  .hero-visual { order: 1; }
  .chat-mockup { max-width: 300px; }
  .fc1, .fc2 { display: none; }

  .somos-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .plans-grid { grid-template-columns: 1fr; max-width: 400px; margin: 1rem auto 0; }
  .plan-card.featured { transform: scale(1); }
  .plan-card.featured:hover { transform: translateY(-4px); }

  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .section { padding: 4rem 1.5rem; }
  
  .footer-inner { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .hero { padding: 6rem 1.5rem 3rem; }
  .glass-box { padding: 1.5rem; }
  .chart-bars { gap: 0.5rem; }
  .bar-fill { width: 10px; }
}

/* Nota al pie de planes */
.plans-note {
  text-align: center;
  margin-top: 2.8rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.02em;
}