@font-face {
  font-family: "Fraunces";
  src: url("../fonts/Fraunces.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("../fonts/Fraunces-Italic.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root{
  --bg:#0a0a0c;
  --surface:#131316;
  --surface-2:#1a1a1f;
  --surface-3:#22222a;
  --text:#f0ede6;
  --text-muted:#8c8880;
  --text-dim:#5a574f;
  --accent:#c9a961;
  --accent-2:#b87333;
  --accent-deep:#2d4a3e;
  --border:#2a2a32;
  --border-light:#3a3a42;
  --font-display:'Fraunces',serif;
  --font-body:'Manrope',sans-serif;
  --fs-display:clamp(3.2rem,8vw,6.5rem);
  --fs-h1:clamp(2.4rem,5.5vw,4.2rem);
  --fs-h2:clamp(2rem,4.2vw,3.2rem);
  --fs-h3:clamp(1.3rem,2.4vw,1.7rem);
  --fs-body:clamp(1rem,1.3vw,1.08rem);
  --fs-small:clamp(0.85rem,1.1vw,0.95rem);
  --fs-tiny:clamp(0.75rem,0.95vw,0.82rem);
  --space-xs:0.5rem;
  --space-sm:1rem;
  --space-md:2rem;
  --space-lg:4rem;
  --space-xl:7rem;
  --radius-sm:2px;
  --radius-md:6px;
  --radius-lg:14px;
  --shadow-sm:0 2px 8px rgba(0,0,0,0.35);
  --shadow-md:0 12px 32px rgba(0,0,0,0.5);
  --shadow-lg:0 24px 60px rgba(0,0,0,0.6);
  --grad-shimmer:linear-gradient(115deg,transparent 30%,rgba(201,169,97,0.15) 50%,transparent 70%);
  --grad-accent:linear-gradient(135deg,var(--accent) 0%,var(--accent-2) 100%);
  --grad-dark:linear-gradient(180deg,#0a0a0c 0%,#131316 100%);
}

*{margin:0;padding:0;box-sizing:border-box}

html{
  scroll-behavior:smooth;
  overflow-x:clip;
}

body{
  font-family:var(--font-body);
  background:var(--bg);
  color:var(--text);
  font-size:var(--fs-body);
  line-height:1.65;
  font-weight:400;
  overflow-x:clip;
  display:flex;
  flex-direction:column;
  min-height:100vh;
  -webkit-font-smoothing:antialiased;
}

main{flex:1 0 auto}

img{max-width:100%;display:block}
a{color:var(--accent);text-decoration:none;transition:color .25s ease}
a:hover{color:var(--text)}

button,input,select,textarea{font-family:inherit;font-size:inherit}

:focus-visible{outline:2px solid var(--accent);outline-offset:3px}

.container{max-width:1280px;margin:0 auto;padding:0 2rem}

h1,h2,h3{font-family:var(--font-display);font-weight:400;letter-spacing:-0.02em;line-height:1.1}
h1{font-size:var(--fs-h1);font-weight:500}
h2{font-size:var(--fs-h2)}
h3{font-size:var(--fs-h3)}
em{font-style:italic;color:var(--accent);font-weight:300}

.overline{
  display:inline-block;
  font-family:var(--font-body);
  font-size:var(--fs-tiny);
  font-weight:500;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--accent);
  margin-bottom:1.2rem;
}

.btn{
  display:inline-flex;
  align-items:center;
  gap:0.7rem;
  padding:1.1rem 2.2rem;
  border-radius:var(--radius-sm);
  font-weight:500;
  font-size:var(--fs-small);
  letter-spacing:0.02em;
  transition:all .3s ease;
  cursor:pointer;
  border:none;
  white-space:nowrap;
}
.btn-primary{
  background:var(--grad-accent);
  color:#0a0a0c;
  box-shadow:0 8px 24px rgba(201,169,97,0.25);
}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 12px 32px rgba(201,169,97,0.4);color:#0a0a0c}
.btn-ghost{
  background:transparent;
  color:var(--text);
  border:1px solid var(--border-light);
}
.btn-ghost:hover{border-color:var(--accent);color:var(--accent)}
.btn-full{width:100%;justify-content:space-between}

.ad-notice{
  background:var(--surface);
  border-bottom:1px solid var(--border);
  padding:0.5rem 2rem;
  text-align:center;
  position:sticky;
  top:0;
  z-index:100;
}
.ad-notice-label{
  display:inline-block;
  font-size:var(--fs-tiny);
  letter-spacing:0.2em;
  text-transform:uppercase;
  color:var(--text-muted);
  padding:0.15rem 0.8rem;
  border:1px solid var(--border);
  border-radius:2px;
}

.header{
  background:rgba(10,10,12,0.85);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
  padding:1.2rem 0;
  top:33px;
  z-index:90;
}
.header-inner{display:flex;align-items:center;justify-content:space-between}

.logo{display:flex;align-items:center;gap:0.9rem;color:var(--text);transition:opacity .25s}
.logo:hover{opacity:0.8;color:var(--text)}
.logo-img{width:50px;height:50px;object-fit:contain}
.logo-text{display:flex;flex-direction:column;line-height:1}
.logo-line1{
  font-family:var(--font-display);
  font-size:1.35rem;
  font-weight:500;
  letter-spacing:0.04em;
  color:var(--text);
}
.logo-line2{
  font-family:var(--font-body);
  font-size:0.72rem;
  letter-spacing:0.35em;
  text-transform:uppercase;
  color:var(--accent);
  margin-top:0.2rem;
  font-weight:500;
}

.hero{
  position:relative;
  padding:var(--space-xl) 0;
  background:var(--grad-dark);
  overflow:hidden;
  min-height:85vh;
  display:flex;
  align-items:center;
}
.hero-reflex{
  position:absolute;
  inset:0;
  background:var(--grad-shimmer);
  background-size:200% 100%;
  animation:shimmer 8s linear infinite;
  pointer-events:none;
  opacity:0.7;
}
.hero-grain{
  position:absolute;
  inset:0;
  background-image:radial-gradient(rgba(201,169,97,0.04) 1px,transparent 1px);
  background-size:24px 24px;
  pointer-events:none;
  opacity:0.5;
}
@keyframes shimmer{
  0%{background-position:200% 0}
  100%{background-position:-200% 0}
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:5rem;
  align-items:center;
  position:relative;
  z-index:2;
}
.hero-content h1{margin-bottom:1.8rem}
.hero-sub{
  font-size:1.15rem;
  color:var(--text-muted);
  max-width:520px;
  margin-bottom:2.5rem;
  line-height:1.7;
}
.hero-support{
  display:flex;
  flex-wrap:wrap;
  gap:1rem;
  margin-bottom:3rem;
}
.support-chip{
  display:flex;
  align-items:center;
  gap:0.8rem;
  padding:0.9rem 1.3rem;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  transition:border-color .25s;
}
.support-chip:hover{border-color:var(--accent)}
.support-chip i{color:var(--accent);font-size:1.2rem}
.support-chip span{display:flex;flex-direction:column;line-height:1.2}
.support-chip strong{font-size:var(--fs-small);color:var(--text);font-weight:600}
.support-chip small{font-size:var(--fs-tiny);color:var(--text-muted);margin-top:0.15rem}

.hero-cta{display:flex;gap:1rem;flex-wrap:wrap}

.hero-visual{position:relative}
.hero-frame{
  position:relative;
  border-radius:var(--radius-md);
  overflow:hidden;
  box-shadow:var(--shadow-lg);
}
.hero-frame-corner{
  position:absolute;
  width:30px;
  height:30px;
  border:2px solid var(--accent);
  z-index:2;
  pointer-events:none;
}
.hero-frame-corner.tl{top:16px;left:16px;border-right:none;border-bottom:none}
.hero-frame-corner.tr{top:16px;right:16px;border-left:none;border-bottom:none}
.hero-frame-corner.bl{bottom:16px;left:16px;border-right:none;border-top:none}
.hero-frame-corner.br{bottom:16px;right:16px;border-left:none;border-top:none}
.hero-img{width:100%;height:560px;object-fit:cover;aspect-ratio:4/5}
.hero-spec{
  position:absolute;
  bottom:28px;
  left:28px;
  background:rgba(10,10,12,0.85);
  backdrop-filter:blur(10px);
  padding:1rem 1.4rem;
  border:1px solid var(--border-light);
  border-radius:var(--radius-sm);
  z-index:3;
}
.spec-label{
  display:block;
  font-size:var(--fs-tiny);
  color:var(--text-muted);
  letter-spacing:0.1em;
  text-transform:uppercase;
  margin-bottom:0.2rem;
}
.spec-value{
  font-family:var(--font-display);
  font-size:1.6rem;
  color:var(--accent);
  font-weight:500;
}

section{padding:var(--space-xl) 0;position:relative}

.section-head{max-width:720px;margin-bottom:4rem}
.section-lead{
  color:var(--text-muted);
  font-size:1.1rem;
  margin-top:1.2rem;
  line-height:1.7;
}

.filosofia{background:var(--surface);position:relative;overflow:hidden}
.filosofia::before{
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:1px;
  background:linear-gradient(90deg,transparent,var(--accent),transparent);
}
.filosofia-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:5rem;
  align-items:center;
}
.filosofia-text h2{margin-bottom:1.8rem}
.filosofia-lead{
  color:var(--text-muted);
  font-size:1.05rem;
  line-height:1.75;
  margin-bottom:2.5rem;
}
.filosofia-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.5rem;
  padding-top:2.5rem;
  border-top:1px solid var(--border);
}
.stat{display:flex;flex-direction:column}
.stat-num{
  font-family:var(--font-display);
  font-size:3rem;
  font-weight:400;
  color:var(--accent);
  line-height:1;
  margin-bottom:0.5rem;
}
.stat-lbl{
  font-size:var(--fs-tiny);
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--text-muted);
}

.filosofia-card{
  position:relative;
  background:var(--surface-2);
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  overflow:hidden;
}
.filosofia-img{width:100%;height:340px;object-fit:cover}
.filosofia-quote{padding:2rem}
.filosofia-quote p{
  font-family:var(--font-display);
  font-style:italic;
  font-size:1.2rem;
  line-height:1.5;
  color:var(--text);
  margin-bottom:1rem;
}
.quote-author{
  font-size:var(--fs-tiny);
  color:var(--accent);
  letter-spacing:0.1em;
  text-transform:uppercase;
}

.servicios{background:var(--bg);position:relative}
.servicios::before{
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:1px;
  background:linear-gradient(90deg,transparent,var(--border-light),transparent);
}

.servicios-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.5rem;
}
.serv-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  overflow:hidden;
  transition:all .35s ease;
  position:relative;
  display:flex;
  flex-direction:column;
}
.serv-card:hover{
  border-color:var(--accent);
  transform:translateY(-4px);
  box-shadow:var(--shadow-md);
}
.serv-flagship{
  grid-column:span 3;
  grid-template-columns:1fr 1fr;
  display:grid;
}
.serv-flagship .serv-body{padding:3rem}
.serv-flagship .serv-visual{height:auto;min-height:380px}
.serv-flagship .serv-img{height:100%}

.serv-badge{
  position:absolute;
  top:1.5rem;
  right:1.5rem;
  background:var(--grad-accent);
  color:#0a0a0c;
  padding:0.4rem 1rem;
  font-size:var(--fs-tiny);
  letter-spacing:0.15em;
  text-transform:uppercase;
  font-weight:600;
  border-radius:2px;
  z-index:2;
}
.serv-visual{
  position:relative;
  height:180px;
  background:var(--surface-2);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.serv-img{width:100%;height:100%;object-fit:cover}
.serv-icon{
  font-size:2.8rem;
  color:var(--accent);
  z-index:1;
}
.serv-reflex{
  position:absolute;
  inset:0;
  background:var(--grad-shimmer);
  background-size:200% 100%;
  animation:shimmer 6s linear infinite;
  opacity:0.4;
}
.serv-body{padding:2rem;display:flex;flex-direction:column;flex:1}
.serv-body h3{margin-bottom:0.9rem}
.serv-desc{
  color:var(--text-muted);
  font-size:0.95rem;
  line-height:1.6;
  margin-bottom:1.2rem;
}
.serv-features{
  list-style:none;
  margin-bottom:1.5rem;
}
.serv-features li{
  display:flex;
  align-items:flex-start;
  gap:0.7rem;
  font-size:0.92rem;
  color:var(--text);
  margin-bottom:0.5rem;
  line-height:1.5;
}
.serv-features i{color:var(--accent);margin-top:0.2rem;font-size:0.75rem}

.serv-specs{
  display:flex;
  flex-wrap:wrap;
  gap:0.5rem;
  margin-bottom:1.5rem;
  padding-bottom:1.5rem;
  border-bottom:1px solid var(--border);
}
.spec-chip{
  font-size:var(--fs-tiny);
  color:var(--accent);
  padding:0.35rem 0.75rem;
  border:1px solid var(--border-light);
  border-radius:2px;
  letter-spacing:0.05em;
}

.serv-price{margin-top:auto;display:flex;flex-direction:column}
.price-label{
  font-size:var(--fs-tiny);
  color:var(--text-muted);
  letter-spacing:0.1em;
  text-transform:uppercase;
  margin-bottom:0.2rem;
}
.price-value{
  font-family:var(--font-display);
  font-size:2.2rem;
  color:var(--text);
  font-weight:500;
  line-height:1;
  margin-bottom:0.3rem;
}
.price-note{font-size:var(--fs-tiny);color:var(--text-muted)}

.proceso{
  background:var(--surface);
  position:relative;
  overflow:hidden;
}
.proceso::before{
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:1px;
  background:linear-gradient(90deg,transparent,var(--accent),transparent);
}

.proceso-timeline{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2rem 3rem;
  position:relative;
}
.timeline-item{
  display:flex;
  gap:1.5rem;
  position:relative;
  padding-bottom:2rem;
  border-bottom:1px solid var(--border);
}
.timeline-item:nth-last-child(-n+3){border-bottom:none}
.timeline-num{
  font-family:var(--font-display);
  font-size:3rem;
  font-weight:300;
  color:var(--accent);
  line-height:1;
  opacity:0.8;
  flex-shrink:0;
}
.timeline-body h3{
  font-size:1.15rem;
  margin-bottom:0.5rem;
  color:var(--text);
}
.timeline-body p{
  color:var(--text-muted);
  font-size:0.95rem;
  line-height:1.6;
}

.resultados{background:var(--bg)}

.resultados-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2rem;
}
.resultado-card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  overflow:hidden;
  transition:all .3s ease;
}
.resultado-card:hover{border-color:var(--accent);transform:translateY(-3px)}
.resultado-img-wrap{height:240px;overflow:hidden;position:relative}
.resultado-img{width:100%;height:100%;object-fit:cover;transition:transform .6s ease}
.resultado-card:hover .resultado-img{transform:scale(1.04)}
.resultado-img-wrap::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,transparent 60%,rgba(10,10,12,0.4) 100%);
}
.resultado-body{padding:1.8rem}
.resultado-model{
  display:inline-block;
  font-size:var(--fs-tiny);
  color:var(--accent);
  letter-spacing:0.12em;
  text-transform:uppercase;
  margin-bottom:0.6rem;
  font-weight:500;
}
.resultado-body h3{font-size:1.2rem;margin-bottom:1.4rem;line-height:1.3}
.resultado-metrics{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1rem;
  padding-top:1.2rem;
  border-top:1px solid var(--border);
}
.metric{display:flex;flex-direction:column}
.metric-val{
  font-family:var(--font-display);
  font-size:1.35rem;
  color:var(--accent);
  font-weight:500;
  line-height:1;
  margin-bottom:0.3rem;
}
.metric-lbl{
  font-size:0.7rem;
  color:var(--text-muted);
  letter-spacing:0.08em;
  text-transform:uppercase;
}

.formulario{
  background:var(--surface);
  position:relative;
  overflow:hidden;
}
.formulario::before{
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:1px;
  background:linear-gradient(90deg,transparent,var(--accent),transparent);
}
.form-grid{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:5rem;
  align-items:start;
}
.form-intro h2{margin-bottom:1.5rem}
.form-intro p{
  color:var(--text-muted);
  font-size:1.05rem;
  line-height:1.7;
  margin-bottom:2rem;
}
.form-benefits{list-style:none}
.form-benefits li{
  display:flex;
  align-items:center;
  gap:0.9rem;
  padding:0.9rem 0;
  border-bottom:1px solid var(--border);
  font-size:0.95rem;
}
.form-benefits li:last-child{border-bottom:none}
.form-benefits i{color:var(--accent);width:20px}

.form-box{
  background:var(--surface-2);
  border:1px solid var(--border);
  padding:2.5rem;
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-md);
  position:relative;
}
.form-box::before{
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:2px;
  background:var(--grad-accent);
}

.lead-form{display:flex;flex-direction:column;gap:1.3rem}
.form-row{display:flex;flex-direction:column;gap:0.5rem}
.form-row label{
  font-size:var(--fs-tiny);
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--text-muted);
  font-weight:500;
}
.form-row input,
.form-row select{
  background:var(--surface);
  border:1px solid var(--border);
  color:var(--text);
  padding:0.9rem 1.1rem;
  border-radius:var(--radius-sm);
  font-size:1rem;
  transition:border-color .25s;
  width:100%;
  max-width:100%;
}
.form-row input:focus,
.form-row select:focus{
  outline:none;
  border-color:var(--accent);
}
.form-row select{appearance:none;background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a961' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");background-repeat:no-repeat;background-position:right 1rem center;background-size:16px;padding-right:2.5rem}

.form-check{
  display:flex;
  align-items:flex-start;
  gap:0.7rem;
  cursor:pointer;
  font-size:0.85rem;
  color:var(--text-muted);
  line-height:1.5;
}
.form-check input{margin-top:0.25rem;accent-color:var(--accent);width:auto;flex-shrink:0}
.form-check a{color:var(--accent);text-decoration:underline}

.footer{
  background:#060608;
  padding:5rem 0 2rem;
  border-top:1px solid var(--border);
  position:relative;
  margin-top:auto;
}
.footer-top{
  padding-bottom:3rem;
  border-bottom:1px solid var(--border);
  margin-bottom:3rem;
}
.logo-footer{margin-bottom:1rem}
.footer-tag{
  color:var(--text-muted);
  font-size:0.95rem;
  max-width:420px;
}

.footer-cols{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr;
  gap:3rem;
  margin-bottom:3rem;
}
.footer-col h4{
  font-family:var(--font-display);
  font-size:1.05rem;
  font-weight:500;
  color:var(--text);
  margin-bottom:1.3rem;
  letter-spacing:0.02em;
}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:0.3rem}
.footer-col li{position:relative}
.footer-col a{
  color:var(--text-muted);
  font-size:0.92rem;
  transition:color .25s;
  display:block;
}
.footer-col a:hover{color:var(--accent)}
.footer-date{
  display:block;
  font-size:0.7rem;
  color:var(--text-dim);
  letter-spacing:0.05em;
  margin-bottom:0.8rem;
}
.footer-legal li{
  font-size:0.92rem;
  color:var(--text-muted);
  margin-bottom:0.3rem;
}
.footer-legal strong{color:var(--text);font-weight:600}

.footer-disclaimer{
  padding:2rem 0;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  margin-bottom:2rem;
}
.footer-disclaimer p{
  font-size:0.82rem;
  color:var(--text-muted);
  line-height:1.65;
  max-width:900px;
}

.footer-bottom{
  display:flex;
  align-items:center;
  gap:1rem;
  font-size:0.82rem;
  color:var(--text-dim);
}
.footer-dot{color:var(--accent)}

.legal-content{
  max-width:820px;
  margin:0 auto;
  padding:4rem 2rem;
  word-break:break-word;
}
.legal-content h1{
  font-size:clamp(2rem,4.5vw,3.2rem);
  margin-bottom:0.8rem;
}
.legal-content .legal-updated{
  color:var(--accent);
  font-size:var(--fs-tiny);
  letter-spacing:0.12em;
  text-transform:uppercase;
  margin-bottom:3rem;
  display:block;
}
.legal-content h2{
  font-size:1.6rem;
  margin-top:3rem;
  margin-bottom:1rem;
  color:var(--accent);
  padding-left:1rem;
  border-left:3px solid var(--accent);
}
.legal-content h3{font-size:1.15rem;margin:1.8rem 0 0.8rem;color:var(--text)}
.legal-content p{
  color:var(--text-muted);
  margin-bottom:1.2rem;
  line-height:1.75;
}
.legal-content ul{
  list-style:none;
  margin:1rem 0 1.5rem;
}
.legal-content ul li{
  position:relative;
  padding-left:1.8rem;
  margin-bottom:0.6rem;
  color:var(--text-muted);
  line-height:1.6;
}
.legal-content ul li::before{
  content:'◆';
  position:absolute;
  left:0;
  color:var(--accent);
  font-size:0.7rem;
  top:0.3rem;
}
.legal-callout{
  background:var(--surface);
  border-left:3px solid var(--accent);
  padding:1.5rem 2rem;
  margin:2rem 0;
  border-radius:0 var(--radius-sm) var(--radius-sm) 0;
}
.legal-callout p{color:var(--text);margin:0}

.thanks-wrap{
  min-height:60vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:4rem 2rem;
  background:var(--surface);
  position:relative;
}
.thanks-wrap::before{
  content:'';
  position:absolute;
  inset:0;
  background:var(--grad-shimmer);
  background-size:200% 100%;
  animation:shimmer 8s linear infinite;
  opacity:0.3;
}
.thanks-box{
  max-width:640px;
  background:var(--surface-2);
  border:1px solid var(--border);
  border-radius:var(--radius-md);
  padding:3.5rem;
  text-align:center;
  position:relative;
  z-index:2;
  box-shadow:var(--shadow-lg);
}
.thanks-box .logo{justify-content:center;margin-bottom:2rem}
.thanks-icon{
  width:80px;
  height:80px;
  border-radius:50%;
  background:var(--grad-accent);
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 1.8rem;
  font-size:2rem;
  color:#0a0a0c;
}
.thanks-box h1{
  font-size:2.2rem;
  margin-bottom:1rem;
}
.thanks-box p{
  color:var(--text-muted);
  margin-bottom:0.8rem;
  font-size:1.05rem;
  line-height:1.6;
}
.thanks-name{color:var(--accent);font-weight:500}
.thanks-steps{
  text-align:left;
  margin:2.5rem 0;
  padding:1.8rem;
  background:var(--surface);
  border-radius:var(--radius-sm);
  border:1px solid var(--border);
}
.thanks-steps h3{
  font-size:1.05rem;
  color:var(--accent);
  margin-bottom:1rem;
  letter-spacing:0.1em;
  text-transform:uppercase;
  font-family:var(--font-body);
  font-weight:600;
}
.thanks-steps ol{list-style:none;counter-reset:step}
.thanks-steps li{
  position:relative;
  padding-left:2.8rem;
  margin-bottom:1rem;
  color:var(--text-muted);
  counter-increment:step;
}
.thanks-steps li::before{
  content:counter(step);
  position:absolute;
  left:0;
  top:0;
  width:28px;
  height:28px;
  background:var(--grad-accent);
  color:#0a0a0c;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
  font-size:0.85rem;
}

[data-aos="fade-right"]:not(.aos-animate){
  transform:translate3d(-32px,0,0) !important;
}
[data-aos="fade-left"]:not(.aos-animate){
  transform:translate3d(32px,0,0) !important;
}
[data-aos="fade-up"]:not(.aos-animate){
  transform:translate3d(0,24px,0) !important;
}

@media (max-width:900px){
  [data-aos]{
    transform:none !important;
    opacity:1 !important;
    transition:none !important;
  }
  .hero-grid > *,
  .filosofia-grid > *,
  .form-grid > *,
  .resultados-grid > *,
  .servicios-grid > *{
    min-width:0;
    max-width:100%;
  }
  .hero-grid,
  .filosofia-grid,
  .form-grid{grid-template-columns:1fr;gap:3rem}
  .servicios-grid{grid-template-columns:1fr}
  .serv-flagship{grid-column:span 1;display:flex;flex-direction:column}
  .serv-flagship .serv-visual{min-height:240px}
  .serv-flagship .serv-body{padding:2rem}
  .proceso-timeline{grid-template-columns:1fr;gap:1.5rem}
  .timeline-item:nth-last-child(-n+3){border-bottom:1px solid var(--border)}
  .resultados-grid{grid-template-columns:1fr}
  .footer-cols{grid-template-columns:1fr;gap:2.5rem}
  .container{padding:0 1.3rem}
  .hero-img{height:420px}
  .footer-bottom{flex-direction:column;text-align:center;gap:0.5rem}
}

@media (max-width:640px){
  .header-inner{
    flex-wrap:wrap;
    gap:0.8rem;
  }
  .logo a,
  .logo{
    flex-direction:column;
    align-items:flex-start;
  }
  .logo-text{
    min-width:0;
    flex:1;
    word-break:break-all;
  }
  .ad-notice-inline .ad-notice-label{
    word-break:break-all;
  }
  .footer-col{
    word-break:break-all;
  }
  .hero-frame{
    display:flex;
    flex-direction:column;
    gap:10px;
  }
  .hero-spec{
    position:static;
    max-width:100%;
  }
  .filosofia-stats{grid-template-columns:1fr}
}

@media (max-width:600px){
  section{padding:var(--space-lg) 0}
  .hero{min-height:auto;padding:var(--space-lg) 0}
  .hero-support{flex-direction:column}
  .support-chip{width:100%}
  .hero-cta{flex-direction:column}
  .btn{width:100%;justify-content:center;max-width:100%}
  .btn-full{justify-content:space-between}
  .filosofia-stats{grid-template-columns:1fr 1fr}
  .serv-body{padding:1.5rem}
  .resultado-metrics{grid-template-columns:1fr}
  .form-box{padding:1.8rem}
  .thanks-box{padding:2rem 1.5rem}
}

@media (max-width:480px){
  .container{padding:0 1rem}
  .form-box{padding:1.2rem}
  .legal-content{padding:2.5rem 1rem}
  .hero-sub{font-size:1rem}
  .price-value{font-size:clamp(1.5rem,8vw,2.2rem)}
  .stat-num{font-size:clamp(2rem,10vw,3rem)}
}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation-duration:0.01ms !important;
    transition-duration:0.01ms !important;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-right {
  display: flex;
  align-items: center;
}

.ad-notice-inline .ad-notice-label {
  display: inline-block;
  font-size: var(--fs-tiny);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.35rem 1rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--surface);
}

.ad-notice-inline {
  display: flex;
  align-items: center;
}

.ad-notice-inline .ad-notice-label {
  display: inline-block;
  font-size: var(--fs-tiny);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.35rem 1rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--surface);
}