.skip-link{
  position:absolute;
  left:1rem;
  top:-100%;
  z-index:3000;
  padding:.75rem 1.1rem;
  border-radius:999px;
  background:var(--primary);
  color:var(--white);
  font-weight:800;
  font-size:.92rem;
  text-decoration:none;
  box-shadow:0 10px 30px rgba(0,0,0,.18);
  transition:top .2s ease;
}

.skip-link:focus{
  top:1rem;
  outline:2px solid var(--white);
  outline-offset:3px;
}

@media (prefers-reduced-motion:reduce){
  .skip-link{transition:none}
}

.site-nav{
  position:sticky;top:0;z-index:2000;
  display:flex;align-items:center;justify-content:space-between;
  padding:1rem 4vw;
  background:var(--white);
  border-bottom:1px solid var(--border);
}

.nav-logo{
  display:flex;
  align-items:center;
  flex-shrink:0;
  line-height:0;
}

.nav-logo-image{
  display:block;
  height:58px;
  width:auto;
  max-width:min(220px, 52vw);
  object-fit:contain;
}

.nav-logo:focus-visible{
  outline:2px solid var(--primary);
  outline-offset:4px;
  border-radius:4px;
}

.nav-actions{display:flex;gap:.55rem;align-items:center}
.nav-link{font-weight:800;color:var(--primary);font-size:.92rem}

.header-social{
  display:flex;
  align-items:center;
  gap:.55rem;
}

.header-social a{
  width:36px;
  height:36px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--border);
  color:var(--primary);
  background:var(--white);
  transition:.25s;
  flex-shrink:0;
}

.header-social a svg{
  width:18px;
  height:18px;
  display:block;
}

.header-social a:hover{
  transform:translateY(-2px);
  background:var(--primary);
  color:white;
  border-color:var(--primary);
}

.header-social a:focus-visible{
  outline:2px solid var(--primary);
  outline-offset:2px;
}

.menu-trigger{
  width:46px;height:46px;border-radius:999px;border:1px solid var(--border);
  background:var(--white);display:flex;flex-direction:column;
  align-items:center;justify-content:center;gap:5px;cursor:pointer;
  transition:.25s;
}

.menu-trigger:hover{
  border-color:rgba(27,79,168,.28);
  background:var(--primary-pale);
}

.menu-trigger span{width:18px;height:2px;background:var(--dark);border-radius:99px}

.nav-admin-link{
  display:flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  border-radius:999px;
  border:1px solid var(--border);
  color:var(--muted);
  background:var(--white);
  opacity:.85;
  flex-shrink:0;
  transition:.25s;
}

.nav-admin-link svg{
  width:17px;
  height:17px;
  display:block;
}

.nav-admin-link:hover{
  opacity:1;
  color:var(--primary);
  border-color:rgba(27,79,168,.28);
  background:var(--primary-pale);
}

.nav-admin-link:focus-visible{
  opacity:1;
  outline:2px solid var(--primary);
  outline-offset:2px;
}

.sidebar-menu{position:fixed;inset:0;z-index:5000;pointer-events:none}
.sidebar-menu.is-open{pointer-events:auto}

.sidebar-backdrop{
  position:absolute;inset:0;background:rgba(10,15,30,.55);opacity:0;transition:.25s;
}

.sidebar-menu.is-open .sidebar-backdrop{opacity:1}

.sidebar-panel{
  position:absolute;top:0;right:0;width:min(430px,92vw);height:100%;
  overflow-y:auto;background:linear-gradient(180deg,rgba(255,255,255,.97),rgba(248,250,255,.94));
  backdrop-filter:blur(20px);border-left:1px solid var(--border);
  box-shadow:-24px 0 60px rgba(10,15,30,.22);
  transform:translateX(100%);transition:.3s;padding:1.4rem;
}

.sidebar-menu.is-open .sidebar-panel{transform:translateX(0)}

.sidebar-header{
  display:flex;justify-content:space-between;align-items:center;gap:1rem;margin-bottom:1rem;
  padding-bottom:1rem;border-bottom:1px solid var(--border);
}

.sidebar-logo{
  display:block;
  line-height:0;
  min-width:0;
  flex:1;
}

.sidebar-logo img{
  display:block;
  height:48px;
  width:auto;
  max-width:100%;
  object-fit:contain;
  object-position:left center;
}

.sidebar-logo:focus-visible{
  outline:2px solid var(--primary);
  outline-offset:4px;
  border-radius:4px;
}

.sidebar-close{
  width:38px;height:38px;border-radius:999px;border:1px solid var(--border);
  background:var(--white);font-size:1.3rem;cursor:pointer;
}

.sidebar-group{border-bottom:1px solid rgba(27,79,168,.08)}

.sidebar-main-link,
.sidebar-accordion{
  width:100%;border:none;background:transparent;display:flex;align-items:center;justify-content:space-between;
  padding:1rem .25rem;cursor:pointer;color:var(--dark);font-weight:800;text-align:left;
}

.sidebar-main-link.is-active{
  color:var(--primary);
}

.sidebar-submenu{
  display:grid;gap:.4rem;max-height:0;overflow:hidden;transition:max-height .3s,padding-bottom .3s;
  pointer-events:none;
}

.sidebar-group.is-active .sidebar-submenu{
  max-height:500px;padding-bottom:1rem;pointer-events:auto;
}

.sidebar-submenu button,
.sidebar-submenu a{
  border:none;background:var(--primary-pale);border-radius:14px;padding:.8rem .9rem;text-align:left;
  cursor:pointer;color:var(--muted);transition:.25s;display:block;
}

.sidebar-submenu button:hover,
.sidebar-submenu a:hover{
  background:var(--primary);color:var(--white);transform:translateX(4px);
}

.sidebar-submenu a.is-active{
  background:var(--primary);
  color:var(--white);
}

.sidebar-cta{
  width:100%;margin-top:1.5rem;border:none;background:var(--primary);color:var(--white);
  padding:1rem 1.2rem;border-radius:18px;font-weight:800;cursor:pointer;box-shadow:var(--shadow);
  display:block;text-align:center;
}

@media (max-width:980px){
  .nav-link{display:none}
}

@media (max-width: 640px) {
  .header-social{display:none}
  .nav-logo-image{
    height:44px;
    max-width:min(170px, 58vw);
  }
  .footer-logo img{
    height:88px;
    max-width:min(300px, 80vw);
  }
  .sidebar-panel{width:100%}
  .footer-grid{grid-template-columns:1fr}
  .footer-legal{justify-content:center}
  .footer-bottom{flex-direction:column;text-align:center}
  .section{padding:3.5rem 0}
  .site-footer{padding:3rem 0 1.5rem}
}

.btn{
  border:none;
  cursor:pointer;
  padding:1rem 1.4rem;
  border-radius:999px;
  font-weight:800;
  transition:.25s;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.btn-primary{background:var(--white);color:var(--primary)}
.btn-blue{background:var(--primary);color:var(--white)}
.btn-ghost{background:rgba(255,255,255,.08);color:var(--white);border:1px solid rgba(255,255,255,.16)}
.btn:hover{transform:translateY(-2px)}

.btn-dropdown{
  position:relative;
  display:inline-flex;
}

.btn-dropdown__trigger{
  gap:.45rem;
}

.btn-dropdown__chevron{
  width:1rem;
  height:1rem;
  flex-shrink:0;
  transition:transform .2s ease;
}

.btn-dropdown.is-open .btn-dropdown__chevron{
  transform:rotate(180deg);
}

.btn-dropdown.is-open{
  z-index:30;
}

.btn-dropdown__menu{
  position:absolute;
  top:calc(100% + .55rem);
  left:0;
  z-index:40;
  min-width:min(100%,16.5rem);
  padding:.5rem;
  border-radius:18px;
  background:var(--white);
  border:1px solid var(--border);
  box-shadow:0 18px 50px rgba(10,15,30,.18);
}

.btn-dropdown__menu a{
  display:flex;
  align-items:center;
  min-height:44px;
  padding:.8rem 1rem;
  border-radius:12px;
  font-weight:700;
  font-size:.95rem;
  color:var(--text);
  transition:background-color .2s ease,color .2s ease;
}

.btn-dropdown__menu a:hover,
.btn-dropdown__menu a:focus-visible{
  background:var(--primary-pale);
  color:var(--primary);
  outline:none;
}

.hero .btn-dropdown__menu{
  background:rgba(12,18,36,.96);
  border-color:rgba(255,255,255,.14);
  box-shadow:0 20px 55px rgba(0,0,0,.32);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}

.hero .btn-dropdown__menu a{
  color:rgba(255,255,255,.92);
}

.hero .btn-dropdown__menu a:hover,
.hero .btn-dropdown__menu a:focus-visible{
  background:rgba(255,255,255,.1);
  color:var(--white);
}

@media (max-width:980px){
  .btn-dropdown{
    width:100%;
    max-width:100%;
  }

  .btn-dropdown__trigger{
    width:100%;
  }

  .btn-dropdown__menu{
    width:100%;
    max-width:100%;
    left:0;
    right:0;
  }
}

@media (max-width:640px){
  .btn-dropdown__menu{
    padding:.55rem;
    border-radius:16px;
  }

  .btn-dropdown__menu a{
    min-height:48px;
    padding:.95rem 1rem;
    font-size:1rem;
  }
}

.section{padding:4.8rem 0}
.section--soft{background:var(--bg-2)}
.section--dark{background:var(--dark);color:var(--white)}
.section-header{margin-bottom:2.4rem}

.section-tag{
  display:inline-flex;
  flex-wrap:wrap;
  max-width:100%;
  padding:.5rem 1rem;
  border-radius:999px;
  background:var(--primary-pale);
  color:var(--primary);
  font-size:.82rem;
  font-weight:800;
  margin-bottom:1rem;
  line-height:1.45;
}

.section--dark .section-tag{background:rgba(255,255,255,.1);color:var(--white)}

.section-title{
  font-family:var(--font-display);
  font-size:clamp(2rem,4vw,3.35rem);
  margin-bottom:1rem;
  max-width:920px;
  overflow-wrap:break-word;
}

.section-subtitle{max-width:780px;color:var(--muted);line-height:1.8}
.section--dark .section-subtitle{color:rgba(255,255,255,.75)}

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:1.4rem;
}

.card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:28px;
  padding:2rem;
  box-shadow:var(--shadow);
  transition:.3s;
}

.testimonial-card{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:1.5rem;
}

.testimonial-quote{
  margin:0;
  color:var(--muted);
  line-height:1.75;
  font-size:1.02rem;
}

.testimonial-author{
  display:grid;
  gap:.25rem;
  padding-top:1rem;
  border-top:1px solid var(--border);
}

.testimonial-name{
  font-style:normal;
  font-weight:800;
  color:var(--text);
  font-size:1rem;
}

.testimonial-meta{
  color:var(--primary);
  font-size:.9rem;
  font-weight:600;
}

.trust-strip{
  padding:2.5rem 0;
  background:var(--bg-2);
  border-block:1px solid var(--border);
}

.trust-strip-label{
  text-align:center;
  color:var(--muted);
  font-size:.92rem;
  font-weight:700;
  letter-spacing:.02em;
  text-transform:uppercase;
  margin-bottom:1.25rem;
}

.trust-names{
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:.65rem .75rem;
  max-width:980px;
  margin:0 auto;
  padding:0;
}

.trust-names li{
  padding:.45rem .85rem;
  border-radius:999px;
  background:var(--white);
  border:1px solid var(--border);
  color:var(--text);
  font-size:.86rem;
  font-weight:600;
  line-height:1.35;
}

.card:hover{transform:translateY(-6px)}
.card h3{margin-bottom:1rem;font-size:1.18rem}
.card p{color:var(--muted);line-height:1.7}

.section--dark .card{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.12);
}

.section--dark .card p{color:rgba(255,255,255,.75)}

.mini-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1rem;
  margin-top:3rem;
}

@media (max-width:980px){
  .mini-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

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

.mini-card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:22px;
  padding:1.2rem;
  box-shadow:0 12px 35px rgba(10,15,30,.08);
  min-width:0;
}

.mini-card strong{
  display:flex;
  align-items:flex-start;
  gap:.65rem;
  margin-bottom:.5rem;
  color:var(--primary);
  min-width:0;
  overflow-wrap:anywhere;
}

.mini-card-icon{
  flex-shrink:0;
  width:1.35rem;
  height:1.35rem;
  margin-top:.12rem;
  color:var(--primary);
}

.mini-card-icon svg{
  display:block;
  width:100%;
  height:100%;
}

.ui-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  width:1.15em;
  height:1.15em;
  color:var(--primary);
  vertical-align:-0.12em;
}

.ui-icon svg{
  display:block;
  width:100%;
  height:100%;
}

.heading-with-icon{
  display:flex;
  align-items:flex-start;
  gap:.55rem;
}

.heading-with-icon .ui-icon{
  width:1.25rem;
  height:1.25rem;
  margin-top:.15rem;
}

.list-with-icons li{
  display:flex;
  align-items:flex-start;
  gap:.55rem;
}

.list-with-icons .ui-icon{
  width:1rem;
  height:1rem;
  margin-top:.2rem;
}

.authority-item strong{
  display:flex;
  align-items:flex-start;
  gap:.55rem;
}

.authority-item strong .ui-icon{
  width:1.15rem;
  height:1.15rem;
  margin-top:.1rem;
  color:var(--white);
}

.country-tags span{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
}

.book-format > span{
  align-items:center;
  gap:.4rem;
}

.mini-card span{
  color:var(--muted);
  font-size:.9rem;
  line-height:1.5;
}

.faq-section__intro,
.faq-section .section-header{
  text-align:left;
  margin-bottom:2rem;
}

.faq-section .section-subtitle,
.faq-section .lead{
  margin-inline:0;
  max-width:720px;
}

.faq-list{
  display:grid;
  gap:.85rem;
  max-width:920px;
  margin-inline:auto;
}

.faq-item{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:20px;
  box-shadow:0 10px 28px rgba(10,15,30,.06);
  overflow:hidden;
}

.faq-item__question{
  position:relative;
  display:block;
  padding:1.15rem 3.4rem 1.15rem 1.3rem;
  font-weight:800;
  line-height:1.45;
  text-align:left;
  color:var(--dark);
  cursor:pointer;
  list-style:none;
}

.faq-item__question::-webkit-details-marker{display:none}

.faq-item__question::after{
  content:"+";
  position:absolute;
  top:50%;
  right:1.3rem;
  transform:translateY(-50%);
  width:1.6rem;
  height:1.6rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:var(--primary-pale);
  color:var(--primary);
  font-size:1.1rem;
  font-weight:800;
  line-height:1;
  transition:background .2s, color .2s;
}

.faq-item[open] .faq-item__question::after{
  transform:translateY(-50%);
}

.faq-item[open] .faq-item__question{
  color:var(--primary);
}

.faq-item[open] .faq-item__question::after{
  content:"−";
  background:var(--primary);
  color:var(--white);
}

.faq-item__answer{
  padding:0 1.3rem 1.2rem;
  color:var(--muted);
  font-size:.95rem;
  line-height:1.75;
  text-align:left;
}

.faq-item__answer p{margin:0}

.faq-item__answer a{
  color:var(--primary);
  font-weight:700;
  text-decoration:underline;
  text-underline-offset:.15em;
}

.faq-more{
  margin:1.75rem auto 0;
  max-width:920px;
  text-align:center;
  color:var(--muted);
  line-height:1.7;
  font-size:.98rem;
}

.faq-more strong{
  display:block;
  color:var(--dark);
  margin-bottom:.35rem;
}

.faq-more a{
  color:var(--primary);
  font-weight:800;
  text-decoration:underline;
  text-underline-offset:.15em;
}

.faq-more__cta{
  display:inline-flex;
  margin-top:1rem;
  color:var(--white) !important;
  text-decoration:none !important;
}

.faq-more__cta:hover{
  color:var(--white) !important;
}

.contact-list{display:grid;gap:1rem}

.contact-item{
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:1rem;
}

.contact-box{
  background:linear-gradient(135deg,rgba(10,15,30,.94),rgba(27,79,168,.88));
  color:var(--white);
  border-radius:34px;
  padding:3rem;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:2rem;
  align-items:start;
  box-shadow:var(--shadow);
  width:100%;
  max-width:100%;
  min-width:0;
}

.contact-box p{color:rgba(255,255,255,.8);line-height:1.8}

.contact-box .section-tag{
  background:rgba(255,255,255,.12);
  color:var(--white);
  border:1px solid rgba(255,255,255,.14);
}

.contact-box .section-title{
  color:var(--white);
  max-width:none;
}

.contact-box .contact-cta{margin-top:2rem}

.contact-item strong{
  display:block;
  margin-bottom:.35rem;
  color:var(--white);
}

.contact-item p{
  color:rgba(255,255,255,.78);
  line-height:1.55;
  font-size:.95rem;
  overflow-wrap:anywhere;
  word-break:break-word;
}

.contact-item p[data-cegaho-email]{
  overflow-wrap:normal;
  word-break:normal;
  hyphens:none;
  font-size:.9rem;
  letter-spacing:-0.015em;
}

@media (max-width:980px){
  .contact-box{grid-template-columns:1fr;gap:1.75rem}
}

@media (max-width:640px){
  .contact-box{
    padding:1.75rem 1.35rem;
    border-radius:28px;
    gap:1.5rem;
  }

  .contact-box .section-title{
    font-size:clamp(1.65rem,7vw,2.2rem);
    line-height:1.15;
  }

  .contact-box .contact-cta{margin-top:1.5rem}

  .contact-box .btn{width:100%}

  .contact-item{padding:.9rem 1rem}

  .contact-item p[data-cegaho-email]{
    font-size:.82rem;
    line-height:1.45;
  }
}

.global-cta{
  margin-top:2rem;
  padding-top:1.5rem;
  border-top:1px solid var(--border);
}

.global-cta p{
  margin-bottom:1rem;
  font-weight:500;
}

.site-footer{
  background:var(--dark);
  color:var(--white);
  padding:4rem 0 2rem;
  text-align:left;
}

.footer-brand{max-width:780px;margin-bottom:2.5rem}

.footer-logo{
  display:inline-block;
  line-height:0;
  margin-bottom:1.1rem;
}

.footer-logo img{
  display:block;
  height:120px;
  width:auto;
  max-width:min(360px, 80vw);
  object-fit:contain;
  border-radius:8px;
}

.footer-logo:focus-visible{
  outline:2px solid var(--white);
  outline-offset:4px;
  border-radius:8px;
}

.footer-brand p{
  color:rgba(255,255,255,.72);
  line-height:1.7;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:2rem;
}

.footer-column h4{margin-bottom:1rem}
.footer-column ul{list-style:none;display:grid;gap:.7rem}
.footer-column a{color:rgba(255,255,255,.72);transition:.25s}
.footer-column a:hover{color:var(--white)}

.footer-whatsapp{
  display:inline-flex;
  margin-top:1rem;
  padding:.85rem 1rem;
  border-radius:999px;
  background:var(--white);
  color:var(--primary) !important;
  font-weight:800;
}

.footer-legal{
  margin-top:2.5rem;
  padding-top:1.5rem;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  flex-wrap:wrap;
  gap:.75rem 1.5rem;
}

.footer-legal a{
  color:rgba(255,255,255,.78);
  font-size:.9rem;
  font-weight:700;
  transition:.25s;
}

.footer-legal a:hover{
  color:var(--white);
}

.footer-bottom{
  margin-top:1.25rem;
  padding-top:1.5rem;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:1rem;
  color:rgba(255,255,255,.6);
  font-size:.9rem;
}

.cookie-banner{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:1200;
  padding:1rem 0 calc(1rem + env(safe-area-inset-bottom, 0px));
  background:rgba(10,15,30,.94);
  border-top:1px solid rgba(255,255,255,.1);
  box-shadow:0 -18px 50px rgba(0,0,0,.28);
  backdrop-filter:blur(14px);
  transform:translateY(110%);
  opacity:0;
  transition:transform .32s cubic-bezier(.22,1,.36,1),opacity .28s ease;
}

.cookie-banner.is-visible{
  transform:translateY(0);
  opacity:1;
}

.cookie-banner.is-hidden{
  transform:translateY(110%);
  opacity:0;
}

.cookie-banner__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1.25rem 2rem;
}

.cookie-banner__text strong{
  display:block;
  color:var(--white);
  font-size:1rem;
  margin-bottom:.35rem;
}

.cookie-banner__text p{
  color:rgba(255,255,255,.78);
  font-size:.92rem;
  line-height:1.65;
  max-width:760px;
  margin:0;
}

.cookie-banner__text a{
  color:var(--white);
  text-decoration:underline;
  text-underline-offset:2px;
}

.cookie-banner__actions{
  display:flex;
  align-items:center;
  flex-shrink:0;
  gap:.85rem 1rem;
  flex-wrap:wrap;
}

.cookie-banner__link{
  color:rgba(255,255,255,.82);
  font-size:.88rem;
  font-weight:700;
  white-space:nowrap;
}

.cookie-banner__link:hover{
  color:var(--white);
}

.cookie-banner__accept{
  white-space:nowrap;
  min-width:8.5rem;
}

@media (max-width:768px){
  .cookie-banner__inner{
    flex-direction:column;
    align-items:stretch;
  }

  .cookie-banner__actions{
    justify-content:stretch;
  }

  .cookie-banner__accept{
    width:100%;
    text-align:center;
  }
}

@media (prefers-reduced-motion:reduce){
  .cookie-banner{
    transition:none;
  }
}

.book-price,
.feature-card .price{
  font-size:1.6rem;
  color:var(--primary);
  font-family:var(--font-display);
  font-weight:700;
  margin:1rem 0 .65rem;
}

.feature-card .book-promo,
.book-promo{
  display:inline-flex;
  align-items:center;
  width:max-content;
  max-width:100%;
  margin:0 0 .75rem;
  padding:.55rem .95rem;
  border-radius:999px;
  background:linear-gradient(135deg,var(--primary),#2563b8);
  color:var(--white);
  font-size:.88rem;
  font-weight:800;
  line-height:1.35;
  box-shadow:0 10px 28px rgba(27,79,168,.22);
}

.book-promo + .book-price{
  margin-top:0;
}