/* ============================================================
   traductormatriculado.ar — Hoja de estilos principal
   ============================================================ */

/* ── VARIABLES ── */
:root {
  --ink:      #111209;
  --paper:    #f5f2eb;
  --gold:     #b8922a;
  --gold-lt:  #d4a83c;
  --muted:    #7a7670;
  --border:   rgba(184, 146, 42, .25);
  --radius:   4px;
  --max-w:    1280px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* noise texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: .6;
}

/* ── HEADER ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background: rgba(245, 242, 235, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: .04em;
  color: var(--ink);
  text-decoration: none;
  flex-shrink: 0;
}
.logo span { color: var(--gold); }

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

nav {
  display: flex;
  gap: 36px;
  align-items: center;
}
nav a {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
nav a:hover { color: var(--gold); }

.btn-nav {
  background: var(--ink) !important;
  color: var(--paper) !important;
  padding: 9px 22px;
  border-radius: var(--radius);
  font-weight: 500 !important;
  transition: background .2s, transform .15s !important;
}
.btn-nav:hover {
  background: var(--gold) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold);
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Libre Franklin', sans-serif;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 24px rgba(184, 146, 42, .3);
}
.btn-primary:hover {
  background: #9a7820;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(184, 146, 42, .4);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Libre Franklin', sans-serif;
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(17, 18, 9, .2);
  display: inline-block;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
  position: relative;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
}

.hero-eyebrow {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -.01em;
  margin-bottom: 32px;
}
.hero h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 48px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-price-pill {
  margin-top: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(184, 146, 42, .08);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 10px 20px;
  font-size: .8rem;
  color: var(--muted);
  width: fit-content;
}
.hero-price-pill strong { color: var(--gold); font-size: 1rem; font-weight: 600; }

/* ── HERO RIGHT ── */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}

.hero-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 44px 40px;
  max-width: 380px;
  width: 100%;
  box-shadow: 0 24px 80px rgba(17, 18, 9, .08), 0 4px 16px rgba(17, 18, 9, .04);
  position: relative;
  z-index: 2;
  animation: float 5s ease-in-out infinite;
}

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

.card-badge {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.card-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.card-email {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
  word-break: break-all;
  margin-bottom: 28px;
  line-height: 1.3;
}
.at-domain { color: var(--gold); }

.card-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.card-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 10px;
}
.card-stat span:last-child { color: var(--ink); font-weight: 500; }

.card-cta {
  margin-top: 28px;
  width: 100%;
  background: var(--gold);
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: var(--radius);
  font-family: 'Libre Franklin', sans-serif;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
}
.card-cta:hover { background: #9a7820; }

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: spin 30s linear infinite;
  width: 420px; height: 420px;
}
.hero-ring:nth-child(2) {
  width: 520px; height: 520px;
  animation-duration: 40s;
  animation-direction: reverse;
  opacity: .5;
}

@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--ink);
  color: var(--paper);
  padding: 20px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  letter-spacing: .08em;
  opacity: .85;
}
.trust-item .icon { color: var(--gold); font-size: 1rem; }

/* ── SECTIONS ── */
section { padding: 100px 80px; position: relative; }

.section-label {
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--gold);
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.18;
  margin-bottom: 20px;
}
h2 em { font-style: italic; color: var(--gold); }

.section-intro {
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 60px;
  font-size: 1.05rem;
}

/* ── WHY ── */
.why { background: #fff; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.feature {
  padding: 40px 36px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
  transition: background .2s;
}
.feature:nth-child(3),
.feature:nth-child(6) { border-right: none; }
.feature:nth-child(4),
.feature:nth-child(5),
.feature:nth-child(6) { border-bottom: none; }
.feature:hover { background: var(--paper); }

.feature-icon {
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.feature h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.25;
}
.feature p { font-size: .9rem; color: var(--muted); line-height: 1.7; }

/* ── HOW ── */
.how { background: var(--paper); }

.steps {
  display: flex;
  flex-direction: column;
  max-width: 700px;
}

.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  opacity: .4;
  line-height: 1;
  margin-top: -4px;
}

.step-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.step-body p { font-size: .9rem; color: var(--muted); }

/* ── PRICING ── */
.pricing {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
}
.pricing h2 { color: var(--paper); }
.pricing .section-label {
  justify-content: center;
}
.pricing .section-label::before { display: none; }

.pricing-intro {
  color: rgba(245, 242, 235, .6) !important;
  margin: 0 auto 56px !important;
}

.price-card {
  background: rgba(245, 242, 235, .05);
  border: 1px solid rgba(184, 146, 42, .35);
  border-radius: 12px;
  max-width: 440px;
  margin: 0 auto;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
}

.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.6rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.price-amount sup {
  font-size: 1.6rem;
  vertical-align: super;
}

.price-period {
  font-size: .8rem;
  color: rgba(245, 242, 235, .5);
  letter-spacing: .12em;
  margin-bottom: 40px;
}

.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9rem;
  color: rgba(245, 242, 235, .8);
}
.price-features li::before {
  content: '✦';
  color: var(--gold);
  flex-shrink: 0;
  font-size: .65rem;
  margin-top: 5px;
}

.btn-pricing {
  width: 100%;
  background: var(--gold);
  color: #fff;
  padding: 16px;
  border: none;
  border-radius: var(--radius);
  font-family: 'Libre Franklin', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, transform .15s;
  text-decoration: none;
  display: block;
  text-align: center;
}
.btn-pricing:hover { background: var(--gold-lt); transform: translateY(-1px); }

.price-note {
  margin-top: 20px;
  font-size: .78rem;
  color: rgba(245, 242, 235, .4);
}

/* ── FAQ ── */
.faq { background: #fff; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 80px;
  max-width: 900px;
}

.faq-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--ink);
}
.faq-item p { font-size: .88rem; color: var(--muted); line-height: 1.7; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--paper);
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  border-top: 1px solid var(--border);
}
.cta-band h2 { margin-bottom: 8px; }
.cta-band p { color: var(--muted); font-size: .95rem; }
.cta-band-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: rgba(245, 242, 235, .5);
  padding: 40px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: .78rem;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--paper);
}
.footer-logo span { color: var(--gold); }

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-links a,
footer a {
  color: rgba(245, 242, 235, .5);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover,
footer a:hover { color: var(--gold); }

.footer-copy { opacity: .6; }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature:nth-child(2),
  .feature:nth-child(4),
  .feature:nth-child(6) { border-right: none; }
  .feature:nth-child(3) { border-right: 1px solid var(--border); }
  .feature:nth-child(5),
  .feature:nth-child(6) { border-bottom: none; }
  .feature:nth-child(3),
  .feature:nth-child(4) { border-bottom: 1px solid var(--border); }
}

@media (max-width: 960px) {
  header { padding: 16px 24px; }
  nav { gap: 20px; }

  .nav-toggle { display: flex; }

  nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(245, 242, 235, .98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 105;
  }
  nav.open { display: flex; }
  nav a { font-size: 1rem; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 60px 24px 60px; }
  .hero-right { display: none; }

  section { padding: 64px 24px; }
  .trust-bar { padding: 20px 24px; gap: 20px; }

  .features-grid { grid-template-columns: 1fr; }
  .feature { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .feature:last-child { border-bottom: none !important; }

  .faq-grid { grid-template-columns: 1fr; gap: 32px; }

  .cta-band {
    grid-template-columns: 1fr;
    padding: 60px 24px;
  }

  footer { padding: 32px 24px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-links { flex-direction: column; gap: 10px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; }
  .price-card { padding: 40px 28px; }
}
