:root{
  --azul:#004F77;
  --azulClaro:#A5DEE5;
  --amarillo:#CFB845;
  --grisFondo:#F5F7FA;
  --texto:#1B1B1B;
  --blanco:#FFFFFF;
  --azulsuave: #D9FAFB;
}

/* -----------------------------------------------------------------------------
   BASE
----------------------------------------------------------------------------- */
*{
  box-sizing:border-box;
}

/* Base */
html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  padding:0;
  font-family:'Playfair Display', serif;
  color:var(--texto);
  background:#fff;
}

img{
  display:block;
  max-width:100%;
}

a{
  color:inherit;
}

section{
  scroll-margin-top:88px;
}

/* Contenedor general */
.container{
  width:min(1200px, calc(100% - 48px));
  margin:0 auto;
}

.section{
  padding:72px 0;
}

.section-title{
  margin:0 0 18px;
  color:var(--azul);
  font-size:clamp(28px, 4vw, 42px);
  line-height:1.15;
  letter-spacing:-0.02em;
}

.text-azul{
  color:var(--azul);
}

/* -----------------------------------------------------------------------------
   HEADER / NAV
----------------------------------------------------------------------------- */
/* Topbar */
.topbar{
  position:relative;
  top:auto;
  z-index:20;
  background:var(--azulsuave);
  color:var(--azul);
  border-bottom:none;
  box-shadow:
    0 6px 14px rgba(15, 23, 42, 0.045),
    0 14px 28px rgba(15, 23, 42, 0.025);
}

.topbar::after{
  content:"";
  position:absolute;
  left:28px;
  right:28px;
  bottom:-12px;
  height:16px;
  background:linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.08) 0%,
    rgba(15, 23, 42, 0.03) 50%,
    rgba(15, 23, 42, 0) 100%
  );
  filter:blur(9px);
  pointer-events:none;
}

.topbar .container{
  width:min(1180px, calc(100% - 32px));
}

.nav-grid{
  display:grid;
  grid-template-columns:auto 1fr;
  align-items:center;
  gap:24px;
  min-height:78px;
}

.brand{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.brand img{
  height:58px;
  width:auto;
}

/* Menú alineado a la derecha */
.menu.centered{
  display:flex;
  justify-self:end;
  align-items:center;
  gap:28px;
}

.topbar-flag{
  width:22px;
  height:auto;
  object-fit:contain;
  margin-left:4px;
  flex-shrink:0;
}

.menu.centered a{
  color:var(--texto);
  text-decoration:none;
  font-size:1.12rem;
  font-weight:600;
  letter-spacing:0;
  padding:6px 0;
  border-radius:0;
  transition:opacity .18s ease;
}

.menu.centered a:hover{
  opacity:.68;
}

.right-slot{
  display:none;
}

.menu-toggle{
  display:none;
}

/* -----------------------------------------------------------------------------
   HERO
----------------------------------------------------------------------------- */
/* Hero principal de imagen completa */
.hero-full{
  position:relative;
  width:100%;
  min-height:calc(100vh - 80px);
  overflow:hidden;
}

.hero-full-image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-split{
  display:grid;
  grid-template-columns:minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap:48px;
  align-items:center;
  padding:84px 0 72px;
}

.hero-full-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to right,
    rgba(255,255,255,0.52) 0%,
    rgba(255,255,255,0.18) 35%,
    rgba(255,255,255,0.08) 100%
  );
}

.hero-full-content{
  position:relative;
  z-index:2;
  min-height:calc(100vh - 80px);
  display:flex;
  align-items:center;
  justify-content:flex-start;
}

.hero-full .container{
  width:min(1600px, calc(100% - 40px));
  margin:0 auto;
}

.hero-full-text{
  width:min(48vw, 760px);
  max-width:none;
  margin-left:clamp(12px, 4vw, 70px);
  padding:40px 0 60px;
}

.hero-kicker{
  display:inline-block;
  margin-bottom:18px;
  padding:0;
  border:none;
  color:var(--azul);
  background:transparent;
  font-size:0.95rem;
  font-weight:600;
}

.hero-left{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.hero-right{
  display:flex;
  justify-content:center;
}

.hero-subtitle{
  font-size:1.1rem;
  line-height:1.5;
}

.hero-title{
  margin:0 0 18px;
  color:var(--azul);
  font-size:clamp(2.7rem, 5vw, 4.6rem);
  line-height:1.02;
  font-weight:700;
}

.hero-subtitle{
  margin:0;
  max-width:580px;
  color:var(--azul);
  font-size:1.15rem;
  line-height:1.6;
  background:transparent;
  padding:0;
}

.hero-buttons{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-start;
  align-items:center;
  margin-top:24px;
}

.store-badge{
  height:52px;
  width:auto;
  display:block;
}

.hero-buttons a{
  display:inline-flex;
  align-items:center;
}

.hero-mockup{
  width:100%;
  max-width:520px;
  height:auto;
  border-radius:20px;
  box-shadow:0 20px 48px rgba(0,0,0,0.14);
}

.btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:12px 20px;
  border-radius:12px;
  background:var(--azul);
  color:#fff;
  font-weight:700;
  text-decoration:none;
  box-shadow:0 8px 20px rgba(0,79,119,0.20);
  transition:transform .18s ease, filter .18s ease, box-shadow .18s ease;
  border:none;
  cursor:pointer;
}

.btn-primary:hover{
  transform:translateY(-1px);
  filter:brightness(1.02);
  box-shadow:0 12px 24px rgba(0,79,119,0.22);
}

/* -----------------------------------------------------------------------------
   BLOQUE EXPLICATIVO / SPLIT
----------------------------------------------------------------------------- */
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:center;
}

.split-left{
  display:flex;
  justify-content:center;
  align-items:center;
}

.split-right{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

.split-right p{
  width:100%;
  max-width:560px;
  margin:8px 0;
  text-align:justify;
  line-height:1.75;
}

.split-actions-magazine{
  justify-content:space-between;
  align-items:flex-end;
  gap:28px;
}

.split-actions-left{
  flex:0 0 auto;
  display:flex;
  justify-content:flex-start;
  align-items:flex-end;
}

.split-actions-right{
  flex:1;
  display:flex;
  justify-content:flex-end;
  align-items:flex-end;
}

.split-magazine-thumb{
  width:140px;
  max-width:none;
  height:auto;
  object-fit:contain;
  filter:drop-shadow(0 10px 20px rgba(0,0,0,0.16));
  transform:rotate(3deg);
}

.split-feature{
  width:100%;
  max-width:560px;
  margin:10px 0 18px;
}

.split-mini-title{
  margin:0 0 8px;
  color:var(--azul);
  font-size:1.15rem;
  line-height:1.3;
  font-weight:700;
  text-align:left;
}

.split-mini-text{
  margin:0;
  color:var(--texto);
  line-height:1.75;
  text-align:justify;
}

.split-image{
  width:100%;
  max-width:400px;
  height:auto;
  border-radius:20px;
  box-shadow:0 18px 40px rgba(0,0,0,0.12);
}

/* -----------------------------------------------------------------------------
   CÓMO FUNCIONA
----------------------------------------------------------------------------- */
.steps-section{
  background:linear-gradient(
    to bottom,
    rgba(165,222,229,0.18),
    rgba(165,222,229,0.10)
  );
  border-top:1px solid var(--bordeSuave);
  border-bottom:1px solid var(--bordeSuave);
}

.steps-sub{
  margin:0 0 28px;
  color:var(--azul);
  opacity:.85;
  font-size:1rem;
}

.steps-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}

.step-card{
  background:#fff;
  border:1px solid rgba(0,0,0,0.05);
  border-radius:18px;
  padding:24px 20px;
  text-align:center;
  box-shadow:var(--sombraSuave);
  transition:transform .18s ease, box-shadow .18s ease;
}

.step-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--sombraMedia);
}

.step-icon{
  display:flex;
  justify-content:center;
  align-items:center;
  margin:0 auto 20px;
}

.step-icon img{
  width:250px;
  height:auto;
  object-fit:contain;
  filter:drop-shadow(0 3px 8px rgba(0,0,0,0.10));
}

.step-title{
  margin:0 0 8px;
  color:var(--azul);
  font-size:1.1rem;
  font-weight:800;
  letter-spacing:-0.01em;
}

.step-text{
  margin:0 auto;
  max-width:280px;
  line-height:1.65;
}

/* -----------------------------------------------------------------------------
   VISTA PREVIA PDF
----------------------------------------------------------------------------- */
.demo-card{
  width:100%;
  max-width:480px;
  background:var(--azul);
  color:#fff;
  border-radius:20px;
  padding:32px 28px;
  text-align:center;
  box-shadow:0 18px 40px rgba(0,0,0,0.16);
}

.demo-card h3{
  margin:0 0 16px;
  font-size:1.35rem;
  line-height:1.3;
}

.btn-white{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:10px 18px;
  border:none;
  border-radius:12px;
  background:#fff;
  color:var(--azul);
  font-weight:700;
  text-decoration:none;
  cursor:pointer;
  box-shadow:0 8px 18px rgba(255,255,255,0.18);
  transition:transform .18s ease, filter .18s ease;
}

.btn-white:hover{
  transform:translateY(-1px);
  filter:brightness(0.98);
}

.tiny-note{
  margin:12px 0 0;
  font-size:12px;
  opacity:.82;
}

.pdf-modal{
  border:none;
  padding:0;
  margin:0;
  background:transparent;
  width:100%;
  max-width:none;
  position:fixed;
  inset:0;
}

.pdf-modal[open]{
  display:grid;
  place-items:center;
}

.pdf-modal::backdrop{
  background:rgba(0,0,0,0.65);
}

.pdf-modal__viewer{
  position:relative;
  width:min(92vw, 860px);
  height:min(92vh, 1200px);
  aspect-ratio:210 / 297;
  background:#111;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 22px 60px rgba(0,0,0,0.34);
  display:grid;
  grid-template-columns:64px 1fr 64px;
  align-items:center;
}

.pdf-page-stage{
  width:100%;
  height:100%;
  min-width:0;
  min-height:0;
  overflow:hidden;
  padding:18px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.pdf-page-image{
  display:block;
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  object-fit:contain;
  object-position:center;
  background:#fff;
}

.pdf-nav{
  height:100%;
  border:none;
  background:transparent;
  color:#fff;
  font-size:42px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}


.pdf-nav:hover{
  background:rgba(255,255,255,0.08);
}

.pdf-nav:disabled{
  opacity:.28;
  cursor:default;
}

.pdf-close{
  position:absolute;
  top:12px;
  right:12px;
  z-index:5;
  width:40px;
  height:40px;
  border:none;
  border-radius:999px;
  background:rgba(255,255,255,0.94);
  color:#111;
  font-size:18px;
  cursor:pointer;
  box-shadow:0 3px 10px rgba(0,0,0,0.24);
}

@media (max-width: 720px){
  .pdf-modal__viewer{
    width:min(96vw, 900px);
    height:min(88vh, 1100px);
    grid-template-columns:48px 1fr 48px;
  }

  .pdf-nav{
    font-size:34px;
  }
}

.no-interact{
  position:absolute;
  inset:0;
  pointer-events:none;
}

.pdf-close{
  position:absolute;
  top:10px;
  right:10px;
  z-index:2;
  width:38px;
  height:38px;
  border:none;
  border-radius:999px;
  background:rgba(255,255,255,0.94);
  color:#111;
  font-size:18px;
  cursor:pointer;
  box-shadow:0 3px 10px rgba(0,0,0,0.24);
}

/* -----------------------------------------------------------------------------
   SEPARADOR
----------------------------------------------------------------------------- */
.separador-azul{
  width:min(420px, calc(100% - 48px));
  height:4px;
  margin:0 auto;
  border-radius:999px;
  background:var(--azul);
  opacity:.92;
}

/* -----------------------------------------------------------------------------
   PRICING
----------------------------------------------------------------------------- */
.pricing-title{
  margin:0 0 10px;
  color:var(--azul);
  font-size:clamp(30px, 4.3vw, 46px);
  line-height:1.12;
  letter-spacing:-0.02em;
}

.pricing-title span{
  color:var(--azulClaro);
}

.pricing-sub{
  margin:0 0 14px;
  color:var(--azul);
  font-weight:600;
  text-decoration:underline;
  text-underline-offset:4px;
}

.pricing-text{
  max-width:720px;
  margin:10px 0;
  line-height:1.75;
}

.pricing-band{
  margin-top:32px;
  padding:42px 0 56px;
  background:var(--azul);
}

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}

.price-card{
  position:relative;
  display:flex;
  flex-direction:column;
  min-height:100%;
  padding:22px 20px 18px;
  background:#fff;
  border:1px solid rgba(0,0,0,0.05);
  border-radius:18px;
  box-shadow:0 12px 30px rgba(0,0,0,0.14);
  transition:transform .18s ease, box-shadow .18s ease;
}

.price-card:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 40px rgba(0,0,0,0.18);
}

.card-head{
  padding-bottom:12px;
  text-align:center;
  border-bottom:1px dashed rgba(0,0,0,0.12);
}

.plan-name{
  margin:0 0 6px;
  color:var(--azulClaro);
  font-size:1.35rem;
  font-weight:800;
  letter-spacing:-0.01em;
}

.plan-price{
  margin:0;
  color:var(--azul);
  font-weight:700;
}

.plan-price span{
  font-size:1.9rem;
}

.plan-tax{
  margin:4px 0 0;
  font-size:12px;
  opacity:.72;
}

.plan-list{
  list-style:none;
  margin:0 0 16px;
  padding:14px 0 0;
  display:grid;
  gap:9px;
}

.plan-list li{
  position:relative;
  padding-left:18px;
  line-height:1.55;
}

.plan-list li::before{
  content:"•";
  position:absolute;
  left:0;
  top:0;
  color:var(--azulClaro);
  font-weight:900;
}

.plan-cta{
  margin-top:auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  min-height:44px;
  padding:10px 14px;
  border-radius:12px;
  background:var(--azulClaro);
  color:var(--azul);
  text-decoration:none;
  font-weight:800;
  box-shadow:0 8px 18px rgba(165,222,229,0.36);
  transition:transform .18s ease, filter .18s ease;
}

.plan-cta:hover{
  transform:translateY(-1px);
  filter:brightness(1.02);
}

.price-card.featured{
  border:2px solid var(--azulClaro);
  box-shadow:0 18px 42px rgba(0,0,0,0.20);
}

.price-card.featured .plan-name{
  color:var(--azul);
}

.price-card.featured .plan-cta{
  background:var(--azul);
  color:#fff;
  box-shadow:0 8px 20px rgba(0,79,119,0.28);
}

.badge{
  position:absolute;
  top:-12px;
  left:50%;
  transform:translateX(-50%);
  padding:6px 10px;
  border-radius:999px;
  background:var(--azul);
  color:#fff;
  font-size:12px;
  font-weight:800;
  letter-spacing:0.02em;
  box-shadow:0 6px 16px rgba(0,0,0,0.22);
}

.addons-card{
  width:220px;
  margin:22px auto 0;
  padding:18px 22px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:16px;
  background:linear-gradient(135deg, #0B5E86, #004F77);
  border:1px solid rgba(255,255,255,0.24);
  box-shadow:0 12px 28px rgba(0,0,0,0.18);
}

.addons-icon{
  width:64px;
  height:auto;
}

.addons-text{
  margin:0;
  text-align:center;
  color:#fff;
  font-size:15px;
  line-height:1.5;
  font-weight:600;
}

.pricing-icons{
  background:var(--azul);
  border-top:1px solid rgba(255,255,255,0.12);
  padding:14px 0 40px;
}

.icons-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
  align-items:start;
  text-align:center;
}

.icon-item img{
  width:96px;
  height:auto;
  margin:0 auto 10px;
  filter:brightness(0) invert(1);
}

.icon-item p{
  margin:0 auto;
  max-width:240px;
  color:#fff;
  line-height:1.55;
  opacity:.96;
}

.icon-item strong{
  color:var(--azulClaro);
}

/* -----------------------------------------------------------------------------
   SOBRE NOSOTROS
----------------------------------------------------------------------------- */
.about-section{
  background:#fff;
}

.about-container{
  width:min(1100px, calc(100% - 48px));
  margin:0 auto;
}

.about-grid{
  display:grid;
  grid-template-columns:0.95fr 1.05fr;
  gap:48px;
  align-items:center;
}

.about-photo-wrap{
  display:flex;
  justify-content:center;
  align-items:center;
}

.about-photo{
  width:100%;
  max-width:420px;
  height:auto;
  border-radius:20px;
  box-shadow:0 18px 40px rgba(0,0,0,0.12);
}

.about-content{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

.about-content .section-title{
  margin-bottom:14px;
}

.about-text{
  margin:0 0 14px;
  max-width:560px;
  color:var(--azul);
  line-height:1.75;
  text-align:justify;
}

.about-social-copy{
  margin:10px 0 16px;
  color:var(--azul);
  font-weight:600;
  line-height:1.6;
}

.about-socials{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.about-social-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 18px;
  border-radius:14px;
  background:var(--grisFondo);
  border:1px solid rgba(0,79,119,0.10);
  color:var(--azul);
  text-decoration:none;
  font-weight:700;
  box-shadow:0 8px 20px rgba(0,79,119,0.08);
  transition:transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.about-social-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 24px rgba(0,79,119,0.12);
  filter:brightness(1.01);
}

.about-social-btn img{
  width:22px;
  height:22px;
}

@media (max-width: 900px){
  .about-grid{
    grid-template-columns:1fr;
    gap:32px;
  }

  .about-content{
    align-items:center;
    text-align:center;
  }

  .about-text{
    max-width:100%;
    text-align:justify;
  }

  .about-socials{
    justify-content:center;
  }
}

/* -----------------------------------------------------------------------------
   RESEÑAS
----------------------------------------------------------------------------- */
.reviews-section{
  background:linear-gradient(
    to bottom,
    rgba(165,222,229,0.10),
    rgba(165,222,229,0.05)
  );
  border-top:1px solid var(--bordeSuave);
  border-bottom:1px solid var(--bordeSuave);
  overflow:hidden;
}

.reviews-slider{
  display:flex;
  gap:24px;
  width:max-content;
  animation:slideReviews 28s linear infinite;
}

.reviews-slider:hover{
  animation-play-state:paused;
}

@keyframes slideReviews{
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(-50%);
  }
}

.review-card{
  min-width:280px;
  max-width:320px;
  padding:22px 24px;
  background:#fff;
  border-radius:18px;
  box-shadow:var(--sombraSuave);
  text-align:center;
}

.stars{
  margin-bottom:10px;
  color:#FFD700;
  font-size:20px;
  letter-spacing:2px;
}

.review-text{
  margin:0 0 10px;
  font-size:15px;
  line-height:1.6;
  font-style:italic;
}

.review-author{
  margin:0;
  color:var(--azul);
  font-size:14px;
  font-weight:700;
}

/* -----------------------------------------------------------------------------
   FOOTER
----------------------------------------------------------------------------- */
.footer-memoralia{
  background:var(--azul);
  color:#fff;
  padding:70px 0 50px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1fr 2fr;
  gap:40px;
  align-items:start;
}

.footer-left{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:20px;
}

.footer-logo{
  width:190px;
  height:auto;
  filter:brightness(0) invert(1);
}

.social-icons{
  display:flex;
  justify-content:center;
  gap:20px;
}

.social-icons a img{
  width:34px;
  height:34px;
  transition:transform .18s ease, filter .18s ease;
}

.social-icons a:hover img{
  transform:translateY(-2px);
  filter:brightness(1.15);
}

.footer-right{
  padding-left:16px;
}

.footer-title{
  margin:0 0 14px;
  font-size:1.4rem;
  font-weight:800;
}

.footer-links{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:8px;
}

.footer-links a{
  color:rgba(255,255,255,0.92);
  text-decoration:none;
  transition:color .18s ease, opacity .18s ease;
}

.footer-links a:hover{
  color:var(--azulClaro);
}

.footer-copy{
  margin-top:18px;
  font-size:13px;
  color:rgba(255,255,255,0.72);
}

/* -----------------------------------------------------------------------------
   RESPONSIVE
----------------------------------------------------------------------------- */
@media (max-width: 1024px){
  .hero-split,
  .split{
    gap:32px;
  }

@media (max-width: 900px){
  .nav-grid{
    grid-template-columns:auto auto;
    min-height:70px;
  }

  .split-actions-magazine{
    justify-content:space-between;
    align-items:flex-end;
    gap:18px;
  }

  .split-magazine-thumb{
    width:110px;
  }

  .topbar-flag{
    width:18px;
    margin-left:0;
  }

  .brand img{
    height:50px;
  }

  .menu-toggle{
    display:block;
    justify-self:end;
    background:none;
    border:none;
    color:var(--azul);
    font-size:1.8rem;
    cursor:pointer;
  }

  .menu.centered{
    display:none;
    position:absolute;
    top:72px;
    right:0;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    width:min(280px, 84vw);
    background:var(--azulClaro);
    padding:12px 0;
    border-left:1px solid rgba(0,79,119,0.08);
    border-bottom:1px solid rgba(0,79,119,0.08);
  }

  .menu.centered{
    display:none;
    position:absolute;
    top:72px;
    right:0;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    width:min(280px, 84vw);
    background:var(--azulClaro);
    padding:12px 0;
    border-left:1px solid rgba(0,79,119,0.08);
    border-bottom:1px solid rgba(0,79,119,0.08);
  }

  .hero-full-overlay{
    background:linear-gradient(
      to top,
      rgba(255,255,255,0.72) 0%,
      rgba(255,255,255,0.32) 45%,
      rgba(255,255,255,0.14) 100%
    );
  }

  .hero-full .container{
    width:min(1500px, calc(100% - 24px));
  }

  .hero-full-text{
    max-width:700px;
    padding:40px 0 60px;
  }

  .hero-title{
    font-size:clamp(2.2rem, 9vw, 3.4rem);
  }

  .hero-subtitle{
    font-size:1rem;
    max-width:100%;
  }

  .pricing-grid{
    grid-template-columns:1fr 1fr;
  }

  .icons-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width: 900px){
  .section{
    padding:56px 0;
  }

  .nav-grid{
    min-height:64px;
  }

  .brand img{
    height:48px;
  }

  .menu-toggle{
    display:block;
  }

  .menu.centered{
    display:none;
    position:absolute;
    top:64px;
    right:0;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    width:min(280px, 82vw);
    padding:10px 0;
    background:var(--azul);
    border-radius:0 0 0 14px;
    box-shadow:-2px 10px 22px rgba(0,0,0,0.22);
  }

  .menu.centered.open{
    display:flex;
  }

  .menu.centered a{
    padding:13px 20px;
    font-size:0.98rem;
  }

  .hero-split,
  .split{
    grid-template-columns:1fr;
  }

  .hero-split{
    padding:64px 0 56px;
  }

  .hero-right{
    order:2;
  }

  .hero-left{
    order:1;
  }

  .split-right{
    align-items:center;
    text-align:center;
  }

  .split-right p{
    max-width:100%;
  }

  .steps-grid{
    grid-template-columns:1fr 1fr;
  }

  .pdf-modal__wrap{
    height:80vh;
  }

  .footer-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

  .footer-right{
    padding-left:0;
  }
}

@media (max-width: 720px){
  .container{
    width:min(100% - 32px, 1100px);
  }

  .section-title,
  .pricing-title{
    text-align:center;
  }

  .pricing-grid{
    grid-template-columns:1fr;
  }

  .steps-grid{
    grid-template-columns:1fr;
  }

  .icons-grid{
    grid-template-columns:1fr;
  }

  .review-card{
    min-width:240px;
    max-width:260px;
    padding:18px 20px;
  }

  .footer-memoralia{
    padding:56px 0 40px;
  }
}

@media (max-width: 560px){
  .container{
    width:min(100% - 24px, 1100px);
  }

  section{
    scroll-margin-top:76px;
  }

  .hero-buttons{
    width:100%;
    flex-direction:column;
  }

  .hero-buttons .btn-primary{
    width:100%;
  }

  .hero-mockup,
  .split-image{
    max-width:100%;
  }

  .demo-card{
    padding:26px 20px;
  }

  .split-actions-magazine{
    gap:14px;
  }

  .split-magazine-thumb{
    width:88px;
  }

  .pdf-modal__wrap{
    height:76vh;
  }

  .separador-azul{
    width:min(220px, calc(100% - 40px));
  }
}
}