:root {
  --soil: #1B160F;
  --soil-2: #241D14;
  --clay: #C17A3E;
  --clay-light: #E0A868;
  --cream: #F2EAD8;
  --cream-dim: #D8CFBB;
  --olive: #7C8A5C;
  --brick: #A63D2F;
  --radius: 3px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--soil);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background: var(--clay);
  color: var(--soil);
}

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.brand-icon{
  width:26px;
  height:26px;
  flex-shrink:0;
  object-fit:contain;
}

/* ---------- hero ---------- */
html{
  overflow-x:hidden;
}
.hero-cs{
  background:var(--clay);
  position:relative;
  left:50%;
  right:50%;
  width:100vw;
  margin-left:-50vw;
  margin-right:-50vw;
  overflow:hidden;
}

.hero-nav{
  position:fixed;
  top:0; left:0;
  width:100%;
  z-index:50;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 32px; /* antes 22px 28px */
  background:var(--clay);
  transition:background-color .25s ease;
}

.hero-nav.scrolled{
  background:rgba(193,122,62,0.75);
  backdrop-filter:blur(6px);
}

.hero-nav .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--soil);
}

.hero-nav .brand svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.hero-nav .nav-links {
  display: flex;
  gap: 28px;
  font-size: 0.92rem;
}

.hero-nav .nav-links a {
  text-decoration: none;
  color: var(--soil);
  opacity: 0.8;
  transition: opacity .2s;
}

.hero-nav .nav-links a:hover {
  opacity: 1;
}

.hero-body{
  padding:118px 28px 80px; 
}

.hero-body h1 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
  color: var(--soil);
  max-width: 780px;
  margin-bottom: 32px;
}

.hero-body .highlight {
  color: var(--cream);
}

.hero-body p {
  color: rgba(27, 22, 15, 0.75);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 48px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
}

.cta-main {
  background: var(--soil);
  color: var(--cream);
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.cta-secondary {
  background: transparent;
  border: 1px solid rgba(27, 22, 15, 0.35);
  color: var(--soil);
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.hero-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid rgba(27, 22, 15, 0.2);
  margin-top: 24px;
  padding: 24px 28px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(27, 22, 15, 0.7);
}

.hero-tags li {
  padding: 0 20px;
  border-left: 1px solid rgba(27, 22, 15, 0.2);
}

.hero-tags li:first-child {
  padding-left: 0;
  border-left: none;
}

@media (max-width:640px) {
  .hero-body {
    padding: 40px 24px 32px;
     padding-top:83px;
  }

  .hero-tags {
    flex-direction: column;
    gap: 8px;
    padding: 16px 24px;
  }

  .hero-tags li {
    border-left: none;
    padding: 0;
  }
}

.brand svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

/* ---------- eyebrow / section headings (reusadas dentro de cada bento-box) ---------- */
.eyebrow {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--olive);
  opacity: 0.85;
  text-transform: none;
  margin-bottom: 20px;
}

.bento-box h2 {
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  color: var(--cream);
  margin-bottom: 18px;
}

.problema {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 28px;
}

.problema .tag {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--olive);
  margin-bottom: 18px;
}

.problema h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 56px;
}

.problema-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(242, 234, 216, 0.1);
  border-left: 1px solid rgba(242, 234, 216, 0.1);
}

.problema-item {
  padding: 28px 32px;
  border-right: 1px solid rgba(242, 234, 216, 0.1);
  border-bottom: 1px solid rgba(242, 234, 216, 0.1);
}

.problema-item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.problema-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clay-light);
}

.problema-num {
  font-size: 0.78rem;
  color: var(--cream-dim);
  opacity: 0.5;
}

.problema-item h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 10px;
}

.problema-item p {
  font-size: 0.92rem;
  color: var(--cream-dim);
  line-height: 1.55;
}

@media (max-width:720px) {
  .problema-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- quien soy ---------- */
.quien-soy {
  max-width: none;
  margin: 0;
  padding: 56px 28px;
}

.quien-soy-titulo {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  line-height: 1.3;
  color: var(--clay-light);
  max-width: 1000px;
  margin-bottom: 16px;
}

.quien-soy-texto {
  font-size: 1.05rem;
  color: var(--cream-dim);
  max-width: 1100px;
}

/* ---------- secciones apiladas ---------- */
.section-stack {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 56px 0;
}

.section-stack>section {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

/* ---------- metricas ---------- */
.metric-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.metric-list li {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(242, 234, 216, 0.08);
  padding-top: 14px;
}

.metric-list li:first-child {
  border-top: none;
  padding-top: 0;
}

.metric-num {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  color: var(--clay-light);
}

.metric-label {
  font-size: 0.85rem;
  color: var(--cream-dim);
}

/* ---------- cómo trabajo (pasos) ---------- */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(242, 234, 216, 0.08);
}

.step-item:first-child {
  border-top: none;
  padding-top: 0;
}

.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--clay);
  flex-shrink: 0;
  width: 32px;
}

.step-body h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 6px;
}

.step-body p {
  font-size: 0.9rem;
  color: var(--cream-dim);
  max-width: 56ch;
}

/* ---------- proyectos (Kapé / refugio) ---------- */
.project-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin: 18px 0;
}

.project-top h3 {
  font-size: 1.2rem;
  color: var(--cream);
}

.project-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.74rem;
  color: var(--olive);
  background: rgba(124, 138, 92, 0.12);
  border: 1px solid rgba(124, 138, 92, 0.3);
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.bento-box p.desc {
  color: var(--cream-dim);
  font-size: 0.92rem;
  margin-bottom: 22px;
}

.wall-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.74rem;
  color: var(--cream-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.wall {
  display: flex;
  flex-direction: column-reverse;
  gap: 6px;
}

.wall-row {
  display: flex;
  gap: 6px;
}

.brick {
  flex: 1;
  background: linear-gradient(180deg, var(--clay), #9c6330);
  border-radius: 2px;
  padding: 10px 12px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--soil);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .5s ease, transform .5s ease;
}

.brick.olive {
  background: linear-gradient(180deg, var(--olive), #5d6a44);
  color: var(--cream);
}

.brick.visible {
  opacity: 1;
  transform: translateY(0);
}

.wall-row:nth-child(1) .brick {
  transition-delay: .05s;
}

.wall-row:nth-child(2) .brick {
  transition-delay: .15s;
}

.wall-row:nth-child(3) .brick {
  transition-delay: .25s;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease;
}

.btn-primary {
  background: var(--clay);
  color: var(--soil);
  border: none;
  cursor: pointer;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--clay-light);
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--cream-dim);
  border: 1px solid rgba(242, 234, 216, 0.18);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--clay-light);
  color: var(--clay-light);
}

.device-mockup{
  display:flex;
  align-items:flex-end;
  justify-content:center;
  gap:150px;
  margin:0 auto;
  position:relative;
}

.laptop {
  width: min(100%, 380px);
}

.laptop-screen {
  background: #000;
  border: 8px solid #2a2115;
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  aspect-ratio: 1906/880;
  overflow: hidden;
  position: relative;
}

.laptop-screen img {
  width: 100%;
  height: 108%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.laptop-base {
  height: 12px;
  width: 112%;
  margin-left: -6%;
  background: linear-gradient(180deg, #3a2f1e, #201a10);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.phone{
  width:88px;
}

.phone-screen {
  background: #000;
  border: 4px solid #2a2115;
  border-radius: 16px;
  aspect-ratio: 9/19.5;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.55);
  position: relative;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 4px;
  background: #2a2115;
  border-radius: 3px;
}

/* ---------- calculadora ---------- */
.calc-card {
  max-width: 100%;
}

.calc-label {
  font-family: 'Fraunces', serif;
  font-size: 1.02rem;
  color: var(--cream);
  margin-bottom: 16px;
}

.calc-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calc-opt {
  text-align: left;
  background: var(--soil);
  border: 1px solid rgba(242, 234, 216, 0.12);
  border-radius: var(--radius);
  color: var(--cream-dim);
  padding: 13px 15px;
  font-size: 0.88rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: border-color .18s, color .18s, background .18s;
}

.calc-opt:hover,
.calc-opt:focus-visible {
  border-color: var(--clay-light);
  color: var(--cream);
  background: rgba(193, 122, 62, 0.08);
}

.calc-back {
  background: none;
  border: none;
  color: var(--cream-dim);
  font-size: 0.82rem;
  margin-top: 12px;
  cursor: pointer;
  padding: 0;
}

.calc-back:hover,
.calc-back:focus-visible {
  color: var(--clay-light);
}

.calc-result {
  text-align: center;
}

.calc-result-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: var(--olive);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.calc-result-price {
  font-family: 'Fraunces', serif;
  font-size: 1.7rem;
  color: var(--clay-light);
  margin-bottom: 12px;
}

.calc-result-desc {
  color: var(--cream-dim);
  font-size: 0.88rem;
  margin-bottom: 20px;
}

/* ---------- precios ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.price-card {
  background: var(--soil);
  border: 1px solid rgba(242, 234, 216, 0.08);
  border-radius: 10px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: rgba(193, 122, 62, 0.5);
  position: relative;
}

.price-card.featured::before {
  content: "Más elegido";
  position: absolute;
  top: -11px;
  left: 20px;
  background: var(--clay);
  color: var(--soil);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.66rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.price-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 8px;
}

.price-card .price-range {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.05rem;
  color: var(--clay-light);
  margin-bottom: 12px;
}

.price-card p.desc {
  font-size: 0.84rem;
  color: var(--cream-dim);
  margin-bottom: 14px;
}

.price-card ul {
  list-style: none;
  font-size: 0.82rem;
  color: var(--cream-dim);
  margin-bottom: 14px;
  flex-grow: 1;
}

.price-card ul li {
  padding-left: 16px;
  position: relative;
  margin-bottom: 6px;
}

.price-card ul li::before {
  content: "·";
  color: var(--olive);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
  line-height: 1;
}

.price-card .maint {
  font-size: 0.78rem;
  color: var(--cream-dim);
  border-top: 1px solid rgba(242, 234, 216, 0.08);
  padding-top: 10px;
}

.maint span {
  color: var(--olive);
  font-weight: 500;
}

/* ---------- nota bajo los planes ---------- */
.price-note {
  margin-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--cream-dim);
}

/* ---------- faq ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--soil);
  border: 1px solid rgba(242, 234, 216, 0.08);
  border-radius: 6px;
  padding: 6px 20px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 0;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  color: var(--clay-light);
  transition: transform .2s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding-bottom: 16px;
  color: var(--cream-dim);
  font-size: 0.9rem;
  max-width: 65ch;
}

.faq-item[open] p {
  animation: faq-open .3s ease both;
}

/* ---------- contacto ---------- */
.box-cta .contact {
  margin-bottom: 0;
}

.contact {
  background: var(--soil-2);
  border-radius: 16px;
  padding: 52px 40px;
  text-align: center;
  border: 1px solid rgba(242, 234, 216, 0.08);
  margin-bottom: 56px;
}

.contact-form {
  margin-top: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.contact-form-or {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--cream-dim);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  margin-bottom: 22px;
}

.contact-form-or::before,
.contact-form-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(242, 234, 216, 0.14);
}

.contact-form-or span {
  white-space: nowrap;
}

.contact-form-row {
  margin-bottom: 16px;
}

.contact-form-row label {
  display: block;
  font-size: 0.78rem;
  color: var(--cream-dim);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.contact-form-row input,
.contact-form-row textarea {
  width: 100%;
  background: var(--soil);
  border: 1px solid rgba(242, 234, 216, 0.14);
  border-radius: var(--radius);
  padding: 11px 14px;
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: border-color .18s ease;
}

.contact-form-row input:focus,
.contact-form-row textarea:focus {
  outline: none;
  border-color: var(--clay-light);
}

.contact-form-row textarea {
  resize: vertical;
  min-height: 96px;
}

.contact-form button {
  width: 100%;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  font-size: 0.95rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.contact-form button svg {
  transition: transform .18s ease;
}

.contact-form button:hover svg,
.contact-form button:focus-visible svg {
  transform: translate(2px, -2px);
}

.contact h2 {
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  margin-bottom: 14px;
}

.contact p {
  color: var(--cream-dim);
  margin-bottom: 28px;
}

.email-link {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(1rem, 3vw, 1.3rem);
  color: var(--clay-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(224, 168, 104, 0.4);
  padding-bottom: 4px;
  transition: border-color .2s, color .2s;
}

.email-link:hover,
.email-link:focus-visible {
  color: var(--cream);
  border-color: var(--cream);
}

footer {
  padding: 32px 0 48px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(242, 234, 216, 0.4);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 12px;
}

.footer-links a {
  color: var(--cream-dim);
  text-decoration: none;
  transition: color .18s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--clay-light);
}

/* ---------- fix alineación: el padding horizontal lo maneja .wrap, no cada sección ---------- */
.problema,
.bento-box,
.quien-soy{
  padding-top:48px;
  padding-bottom:48px;
  padding-left:0;
  padding-right:0;
}

.section-divider{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin:3px 0;
  padding:0;
}
.divider-wave{
  width:90px;
  height:14px;
  opacity:0.4;
  flex-shrink:0;
}
.divider-bird{
  width:18px;
  height:18px;
  flex-shrink:0;
  opacity:0.85;
  object-fit:contain;
}
.section-divider svg{
  width:18px;
  height:18px;
  opacity:0.7;
}

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

/* ---------- tablet (≤900px) ---------- */
@media (max-width:900px){
  .price-grid{
    grid-template-columns:1fr;
  }
  .device-mockup{
    gap:60px;
  }
  .phone{
    width:70px;
  }
}

/* ---------- mobile (≤640px) ---------- */
@media (max-width:640px){

  /* nav */
  .hero-nav{
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    text-align:left;
    gap:10px;
    padding:14px 20px;
  }
  .hero-nav .brand{
    font-size:0.95rem;
  }
  .hero-nav .nav-links{
    gap:14px;
    font-size:0.8rem;
    flex-wrap:nowrap;
    justify-content:flex-end;
    white-space:nowrap;
  }

  /* hero body */
  .hero-body h1{
    margin-bottom:20px;
  }
  .hero-body p{
    margin-bottom:28px;
  }
  .hero-ctas{
    flex-direction:column;
    gap:10px;
  }
  .cta-main,
  .cta-secondary{
    text-align:center;
  }

  /* problema */
  .problema h2{
    margin-bottom:36px;
  }
  .problema-item{
    padding:20px;
  }

  /* quien soy */
  .quien-soy-titulo{
    max-width:100%;
  }
  .quien-soy-texto{
    max-width:100%;
  }

  /* section divider */
  .divider-wave{
    width:44px;
  }
  .section-divider{
    gap:8px;
  }

  /* cómo trabajo */
  .step-item{
    gap:14px;
  }
  .step-num{
    width:24px;
    font-size:1.1rem;
  }

  /* mockup Kapé */
  .device-mockup{
    display:block;
    position:relative;
    max-width:280px;
    margin:0 auto;
  }
  .laptop{
    width:100%;
  }
  .phone{
    position:absolute;
    right:-8px;
    bottom:-16px;
    width:64px;
  }

  /* wall (features) */
  .wall-row{
    flex-direction:column;
  }

  /* precios */
  .price-card{
    padding:20px 18px;
  }

  /* faq */
  .faq-item{
    padding:4px 16px;
  }

  /* contacto */
  .contact{
    padding:36px 24px;
    margin-bottom:36px;
  }

  /* bento-box / problema / quien-soy padding vertical */
  .problema,
  .bento-box,
  .quien-soy{
    padding-top:36px;
    padding-bottom:36px;
  }
}

.whatsapp-float{
  position:fixed;
  bottom:24px;
  right:24px;
  width:56px;
  height:56px;
  background:var(--cream);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 14px rgba(0,0,0,0.35);
  z-index:60;
  transition:transform .18s ease;
}
.whatsapp-float img{
  width:28px;
  height:28px;
  object-fit:contain;
}
.whatsapp-float:hover{
  transform:scale(1.08);
}
@media (max-width:640px){
  .whatsapp-float{
    bottom:16px;
    right:16px;
    width:50px;
    height:50px;
  }
}

/* ---------- animaciones ---------- */
@keyframes bird-flap {
  0%, 100% { transform: scaleY(1) rotate(0deg); }
  50% { transform: scaleY(0.86) rotate(-4deg); }
}

@keyframes hero-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes wave-flow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

@keyframes nav-bird-in {
  0% { opacity: 0; transform: translateX(-70px) rotate(-18deg); }
  60% { opacity: 1; transform: translateX(6px) rotate(4deg); }
  80% { transform: translateX(-2px) rotate(-2deg); }
  100% { opacity: 1; transform: translateX(0) rotate(0deg); }
}

@keyframes faq-open {
  from { opacity: 0; }
  to { opacity: 1; }
}

.divider-bird {
  animation: bird-flap 3.2s ease-in-out infinite;
  transform-origin: center bottom;
}

.hero-body h1,
.hero-body p,
.hero-ctas {
  animation: hero-in .7s ease both;
}

.hero-body h1 { animation-delay: .05s; }
.hero-body p { animation-delay: .18s; }
.hero-ctas { animation-delay: .3s; }

.divider-wave {
  animation: wave-flow 4.5s ease-in-out infinite;
}

.hero-nav .brand-icon {
  animation: nav-bird-in .8s ease both;
}

/* ---------- accesibilidad: reducir movimiento ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .brick {
    opacity: 1;
    transform: none;
  }
}
