/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #000;          
  color: #fff;
  line-height: 1.4;
}

/* LAYOUT */
.container {
  width: min(1100px, 90%);
  margin: auto;
}

/* HEADER */

.topbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 28px 0;
  background: transparent;
  transition: all 0.35s ease;
}


/* ================= NAVBAR BASE ================= */
.nav-brand-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

/* Tamaño logo */
.nav-logo {
  height: 60px;
  transition: all .3s ease;
}

/* ================= NAVBAR BASE ================= */
.manga-nav {
  background: transparent;
  padding: 22px 0;
  transition: all .3s ease;
}

/* ================= NAVBAR SCROLL ================= */
.manga-nav.is-scrolled {
  background: rgba(0,0,0,0.95);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  padding: 10px 0;
}

.manga-nav.is-scrolled .nav-logo {
  height: 32px;
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {

  .nav-brand-center {
    position: static;
    transform: none;
    margin-left: auto;
    margin-right: auto;
  }

  .navbar-collapse {
    background: #000;
    margin-top: 12px;
    padding: 20px;
    text-align: center;
  }

  .navbar-nav {
    gap: 10px;
  }
}

/* ================= HERO CTA RESPONSIVE ================= */

.btnRow {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .btnRow {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .btnRow .btn {
    width: 100%;
    max-width: 340px;
  }
}

/* ================= HERO ANIMATIONS ================= */

.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* HERO */
.hero {
  min-height: 90vh;
  background:
    linear-gradient(180deg, rgba(0,0,0,.3), rgba(0,0,0,.9)),
    url("img/HEAD-01.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero__kicker {
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero__sub {
  margin: 14px auto 26px;
  max-width: 720px;
  font-size: 14px;
  opacity: .8;
}

.hero--video {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.75) 100%
  );
  z-index: 2;
}
.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
}



/* BUTTONS */
.btnRow {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn {
  padding: 12px 20px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
}

.btn--primary {
  background: #f29a1f;
  color: #000;
}

.btn--ghost {
  border: 1px solid #fff;
  color: #fff;
}

/* SECTIONS */
.section {
  padding: 80px 0;
}

.section--dark {
  background: #050505;
}

.h2 {
  text-align: center;
  font-size: 26px;
  font-weight: 800;
}

.divider {
  width: 40px;
  height: 2px;
  background: #fff;
  margin: 14px auto;
}

.p {
  max-width: 800px;
  margin: auto;
  text-align: center;
  font-size: 13px;
  opacity: .75;
}


.features {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature {
  text-align: center;
}

/* ================= FEATURES ICONS (FIXED SIZE) ================= */


.features {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* ================= TABLET & MOBILE GRANDE ================= */

@media (max-width: 900px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  .feature {
    max-width: 280px;
    margin: 0 auto;
  }
}

/* ================= MOBILE CHICO ================= */
@media (max-width: 480px) {
  .features {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .feature {
    max-width: 320px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 640px) {
  .section--dark {
    padding: 72px 0;
  }

  .h2 {
    font-size: 22px;
    line-height: 1.3;
  }

  .p {
    font-size: 14px;
    line-height: 1.6;
    padding: 0 8px;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 48px;
  }

  .feature {
    text-align: center;
    max-width: 320px;
    margin: 0 auto;
  }

  .feature h3 {
    font-size: 16px;
    margin-top: 6px;
  }

  .feature p {
    font-size: 14px;
    opacity: 0.85;
  }

  .iconRing {
    margin-bottom: 18px;
  }
}

.iconRing {
  width: 90px;          
  height: 90px;
  border: none;          
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}

.feature-icon {
  width: 110px;         
  height: 110px;
  object-fit: contain;
  display: block;
}

.feature h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature p {
  font-size: 14px;
  opacity: 0.85;
}

.feature:hover .feature-icon {
  transform: scale(1.34);
  transition: transform 0.25s ease;
  filter: drop-shadow(0 6px 16px rgba(242, 154, 31, 0.18));
}


.feature:hover .iconRing {
  background: rgba(242, 154, 31, 0.12);
}

.feature:hover .feature-icon {
  transform: scale(1.08);
}


/* ================= MANGA.AG SECTION ================= */

.manga-ag {
  position: relative;
  height: 70vh;
  min-height: 420px;
  overflow: hidden;
}

.manga-ag__bg {
  position: absolute;
  inset: 0;
  background: url("img/manga-ag-fondo.jpg") center / cover no-repeat;
  background-attachment: fixed;
  filter: brightness(0.65);
  z-index: 1;
}
.manga-ag__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.manga-ag__logo {
  width: 260px;
  max-width: 70%;
  height: auto;
  opacity: 0.95;
}
.manga-ag::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(0,0,0,0.2) 0%,
    rgba(0,0,0,0.7) 100%
  );
  z-index: 1;
}
@media (max-width: 768px) {
  .manga-ag__bg {
    background-attachment: scroll;
  }

  .manga-ag {
    height: 50vh;
  }

  .manga-ag__logo {
    width: 200px;
  }
}



/* BANNER */
.banner {
  height: 260px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.3), rgba(0,0,0,.8)),
    url("img/ganaderia-manga.jpg") center / cover no-repeat;
}

/* PERFILES */
.perfilesGrid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.perfil {
  text-align: center;
  font-size: 13px;
  opacity: .85;
}

/* FOOTER */
.footer {
  background:
    linear-gradient(180deg, rgba(0,0,0,.8), rgba(0,0,0,.9)),
    url("img/ganaderia-footer.jpeg") center / cover no-repeat;
  padding: 40px 0;
}

.footerNav {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.footerNav a {
  color: #fff;
  font-size: 12px;
  text-decoration: none;
}

.copy {
  text-align: center;
  font-size: 11px;
  margin-top: 14px;
  opacity: .6;
}


/* ================= PERFILES HERO ================= */

.perfilesHero {
  position: relative;
  background: #000;
  padding: 120px 0 140px;
  color: #fff;
  overflow: hidden;
}

.perfilesOverlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.perfilesHero .container {
  position: relative;
  z-index: 2;
}

.perfilesHeader {
  text-align: center;
  margin-bottom: 80px;
}

.perfilesHeader h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
}

.perfilesDivider {
  display: block;
  width: 48px;
  height: 3px;
  background: #fff;
  margin: 0 auto 14px;
  border-radius: 2px;
}

.perfilesHeader p {
  font-size: 16px;
  opacity: 0.85;
}

.perfilesGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 56px;
  text-align: center;
}

.perfilItem {
  max-width: 260px;
  margin: 0 auto;
}

.perfilIcon {
  width: 96px;
  height: 96px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.perfilIcon img {
  width: 90px;
  height: auto;
}

.perfilItem h4 {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.perfilItem p {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.85;
}

@media (max-width: 1100px) {
  .perfilesGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
}

@media (max-width: 640px) {
  .perfilesGrid {
    grid-template-columns: 1fr;
  }

  .perfilesHero {
    padding: 100px 0;
  }
}


/* ================= PERFILES DARK ================= */

.perfilesDark {
  background: #000;
  padding: 120px 0 140px;
  text-align: center;
}

.perfilesTitle {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.perfilesDivider {
  width: 48px;
  height: 3px;
  background: #fff;
  margin: 0 auto 14px;
}

.perfilesDivider02 {
  display: block;
  width: 48px;
  height: 3px;
  background: #000;
  margin: 0 auto 14px;
}

.perfilesSubtitle {
  font-size: 16px;
  opacity: .75;
  margin-bottom: 80px;
}

.perfilesGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 56px;
  max-width: 1200px;
  margin: 0 auto 80px;
}

.perfilItem {
  max-width: 260px;
  margin: 0 auto;
}

.perfilIcon {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
}


.perfilIcon::before {
  content: "";
  position: absolute;
  inset: -10px; 
  border-radius: 50%;

}

/* ÍCONO */
.perfilIcon img {
  width: 100px;
  height: 100px;
  z-index: 1;
}


.perfilItem:hover .perfilIcon {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 6px rgba(242,154,31,0.25),
    0 20px 48px rgba(0,0,0,0.65);
  transition: all .3s ease;
}

.perfilItem h4 {
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.perfilItem p {
  font-size: 14px;
  opacity: .75;
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .perfilesGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .perfilesGrid {
    grid-template-columns: 1fr;
  }
}

/* ================= PERFILES ANIMATION ================= */

.perfilItem {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.perfilItem.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.perfilItem.is-visible .perfilIcon {
  animation: perfilIconPop 0.6s ease;
}

@keyframes perfilIconPop {
  0%   { transform: scale(0.9); }
  60%  { transform: scale(1.06); }
  100% { transform: scale(1); }
}

/* ================= PLANES Y PRECIOS ================= */

.tabss {
  position: relative;
  padding: 140px 0 160px;
  color: #111;
}

/* ================= PLANES Y PRECIOS ================= */

.planes {
  position: relative;
  background: url("img/planes-precios-full.jpg") center / cover no-repeat;
  padding: 140px 0 160px;
  color: #111;
}

.planesOverlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.55);
  z-index: 1;
}

.planes .container {
  position: relative;
  z-index: 2;
}

/* Header */
.planesHeader {
  text-align: center;
  margin-bottom: 90px;
}

.planesHeader h2 {
  font-size: 42px;
  font-weight: 700;
}

.planesDivider {
  width: 48px;
  height: 3px;
  background: #000;
  margin: 12px auto 16px;
}

.planesHeader p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 16px;
  opacity: .85;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}


/* ================= PRICING CARDS ================= */

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pricing .card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 48px 32px 40px;
  transition: 
    transform 0.35s ease,
    box-shadow 0.35s ease;
  box-shadow: 
    0 8px 24px rgba(0,0,0,0.08);
}

.pricing .card:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 18px 48px rgba(0,0,0,0.18);
}

.card--featured {
  transform: translateY(-6px);
  box-shadow:
    0 18px 44px rgba(0,0,0,0.22);
  border: 2px solid rgba(255, 153, 0, 0.35);
}

.card--featured:hover {
  transform: translateY(-14px);
  box-shadow:
    0 26px 60px rgba(0,0,0,0.32);
}

@media (max-width: 768px) {
  .pricing .card,
  .pricing .card:hover {
    transform: none;
    box-shadow: 
      0 8px 24px rgba(0,0,0,0.12);
  }

  .pricing .card:hover .cardIcon {
    transform: translateX(-50%);
  }
}

.cardIcon {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 50%;
  padding: 10px;
  box-shadow:
    0 0 0 6px rgba(255, 255, 255, 0.9),
    0 10px 30px rgba(0,0,0,0.25);
  transition: transform 0.35s ease;
}

.pricing .card:hover .cardIcon {
  transform: translateX(-50%) scale(1.08);
}

.card {
  position: relative;
  background: #fff;
  border-radius: 16px;
 padding: 72px 32px 40px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);

  display: flex;
  flex-direction: column;
  height: 100%;
}

.cardIcon {
  position: absolute;
  top: -32px;
  left: 32px;

  width: 55px;
  height: 51px;

  background: #fff;
  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 26px rgba(0,0,0,0.25);
}

.cardIcon img {
  width: 70px;
}

.card h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.card h3 span {
  font-size: 14px;
  font-weight: 400;
  color: #666;
}

.card ul {
  padding-left: 18px;
  margin: 0;

  flex-grow: 1;
}

.card ul li {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 6px;
}

.pillRow {
  margin-top: 72px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .pricing {
    grid-template-columns: 1fr;
  }

  .card--featured {
    transform: none;
  }
}



/* ================= FOOTER ================= */

.footer {
  position: relative;
  background: url("img/footer-manga-.jpg") center / cover no-repeat;
  padding: 56px 0 36px;
  color: #111;
}


.footerOverlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.6);
}


.footerInner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}


.footerNav {
  display: grid;
  grid-template-columns: repeat(7, auto);
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}


.footerNav a {
  color: #111;
  text-decoration: none;
  position: relative;
}

.footerNav a:hover {
  text-decoration: underline;
}

.footerLogo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footerLogo img {
  width: 75px;
  height: auto;
}

.footerDivider {
  display: block;
  width: 100%;
  height: 1px;
  background: #111;
  margin: 20px 0 14px;
  opacity: 0.6;
}

.copy {
  font-size: 12px;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .footerNav {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footerLogo {
    order: -1;
    margin-bottom: 8px;
  }
}


.features{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}


@media (max-width: 900px){
  .features{
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}


@media (max-width: 360px){
  .features{
    grid-template-columns: 1fr;
  }
}

/* ================= FEATURE ICON ANIMATION ================= */

.feature {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.feature.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================= CONTACTO ================= */

.contact {
  background: #000;
  padding: 140px 0 160px;
  color: #fff;
}

.contact .h2 {
  text-align: center;
  margin-bottom: 12px;
}

.contact .p {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 60px;
  opacity: 0.85;
}

/* ================= CONTENEDOR PRINCIPAL ================= */

.contactWrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  max-width: 1000px;
  margin: 0 auto;
  background: #f3f2f1;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}

/* ================= FORM CARD ================= */

.formCard {
  padding: 48px 56px;
  color: #000;
}

.formCard label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.formCard input,
.formCard textarea {
  width: 100%;
  border: none;
  border-bottom: 2px solid #000;
  background: transparent;
  padding: 8px 4px;
  margin-bottom: 26px;
  font-size: 14px;
  outline: none;
}

.formCard textarea {
  resize: none;
  height: 90px;
}

.formCard button {
  margin-top: 12px;
  padding: 12px 36px;
}

/* ================= GRILLAS ================= */

.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* ================= IMAGEN ================= */

.contactImg {
  background-image: url("img/contacto-full.jpg");
  background-size: cover;
  background-position: center;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

  .contact {
    padding: 100px 0
}
}



/* ================= CONTACT MOBILE IMPROVEMENTS ================= */
@media (max-width: 600px) {

  /* Sección general */
  .contact {
    padding: 80px 0 100px;
  }

  .contact .h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .contact .p {
    font-size: 14px;
    margin: 0 auto;
    width: min(94vw, 420px);
    border-radius: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    padding: 0 12px;
  }



  .contact .h2 {
    font-size: 38px;
    line-height: 1.05;
    margin-bottom: 14px;
  }

  .contact .p {
    max-width: 340px;
    font-size: 15px;
    margin: 0 auto 28px;
    line-height: 1.55;
  }

  .formCard {
    padding: 22px 18px 26px;
  }

  .formIntro {
    margin-bottom: 18px;
  }

  .formCard h3 {
    font-size: 23px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .formCard p {
    font-size: 14px;
    line-height: 1.5;
  }

  .formCard label {
    margin-bottom: 6px;
    letter-spacing: 0.03em;
    font-size: 10px;
  }

  .formCard input,
  .formCard textarea {
    font-size: 15px;
    margin-bottom: 16px;
  }

  .formCard textarea {
    min-height: 100px;
  }

  .formCard .btn {
    width: 100%;
    font-size: 14px;
    padding: 13px 14px;
  }

  .formNote {
    font-size: 12px;
    line-height: 1.45;
  }
  .contactWrap {
    margin: 0 12px;           
    border-radius: 16px;
  }

  .formCard {
    padding: 28px 20px 36px;     
  }


  .formCard input,
  .formCard textarea {
    font-size: 16px;          
    padding: 10px 6px;
    margin-bottom: 22px;
  }

  .formCard label {
    font-size: 11px;
    margin-bottom: 4px;
  }


  .grid2 {
    grid-template-columns: 1fr;
    gap: 18px;
  }


  .formCard button {
    width: 100%;
    padding: 14px 0;
    font-size: 15px;
    border-radius: 10px;
  }

  .contactImg {
    height: 220px;
    border-radius: 0 0 16px 16px;
  }
}

/* ================= CONTACT MOBILE: HIDE IMAGE ================= */
@media (max-width: 600px) {

  .contactImg {
    display: none;
  }

  .contactWrap {
    grid-template-columns: 1fr;
  }
}


/* ================= TABS ================= */

.appTabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
}

.appTab {
  background: #7c7a75;
  color: #fff;
  border: none;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s ease;
}

.appTab.is-active {
  background: #f68b2c;
  box-shadow: 0 8px 22px rgba(246,139,44,.45);
}

@media (max-width: 768px) {
  .appTabs {
    flex-direction: column;
    align-items: center;
  }

  .appTab {
    width: 100%;
    max-width: 320px;
  }
}

/* ================= CONTENEDOR APP ================= */

.app {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ================= PANELS ================= */

.appPanel {
  display: none;
}

.appPanel.is-active {
  display: block;
}

/* ================= CARD CENTRAL ================= */

.appSplit {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  min-height: 520px;
  box-shadow: 0 40px 100px rgba(0,0,0,.55);
}

/* ================= IMAGEN ================= */

.appSplit__img {
  display: block;
  min-height: 520px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.appSplit__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,.15),
    rgba(0,0,0,.45)
  );
}

.appImg--mobile { background-image: url("img/aplicacion-mob.png"); }
.appImg--web    { background-image: url("img/aplicacion-web.png"); }
.appImg--ia     { background-image: url("img/aplicacion-ia.png"); }

/* ================= CONTENIDO ================= */

.appSplit__content {
  padding: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #000;
}

.appSplit__content h3 {
  font-size: 34px;
  margin-bottom: 12px;
}

.appSplit__content p {
  max-width: 440px;
  color: #444;
  margin-bottom: 24px;
}

.appSplit__content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.appSplit__content li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 10px;
  font-size: 15px;
}

.appSplit__content li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #f68b2c;
  font-size: 22px;
  line-height: 1;
}

.appSplit__content .btn {
  align-self: flex-start;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .appSplit {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .appSplit__img {
    min-height: 260px;
  }

  .appSplit__content {
    padding: 40px 24px;
  }

  .appSplit__content h3 {
    font-size: 26px;
  }
}

/* ================= DESKTOP FORCE ================= */

@media (min-width: 901px) {
  .appSplit {
    grid-template-columns: 1.1fr 1fr;
  }
}


/* ================= 2026 LANDING REFINEMENTS ================= */

:root {
  --color-bg: #060606;
  --color-surface: rgba(12, 15, 11, 0.78);
  --color-surface-strong: #0d100c;
  --color-card: #ffffff;
  --color-text: #f8f5ef;
  --color-muted: rgba(248, 245, 239, 0.74);
  --color-accent: #f29a1f;
  --color-accent-dark: #be6d0a;
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.28);
  --shadow-glow: 0 18px 54px rgba(242, 154, 31, 0.18);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  background:
    radial-gradient(circle at top, rgba(242, 154, 31, 0.14), transparent 34%),
    var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

section[id] {
  scroll-margin-top: 104px;
}

section#producto,
section#tabs,
section#contacto {
  scroll-margin-top: 112px;
}

.container {
  width: min(1160px, 90%);
}

.nav-link {
  position: relative;
  letter-spacing: 0.02em;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-current::after {
  transform: scaleX(1);
}

.hero {
  padding: 140px 0 60px;
  text-align: left;
}

.hero__overlay {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.28) 0%,
    rgba(0, 0, 0, 0.72) 60%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

.hero__content {
  width: 100%;
  padding: 150px 0 84px;
  text-align: left;
}

.heroLayout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.85fr);
  gap: 36px;
  align-items: end;
}

.heroCopy {
  max-width: 720px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(7, 10, 8, 0.4);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.hero__eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 5px rgba(242, 154, 31, 0.15);
}

.hero__kicker {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 0.97;
  letter-spacing: -0.04em;
  text-transform: none;
}

.hero__kicker span {
  display: block;
  color: var(--color-accent);
}

.hero__sub {
  margin: 22px 0 28px;
  max-width: 640px;
  font-size: 17px;
  line-height: 1.7;
  opacity: 1;
  color: var(--color-muted);
}

.heroPoints {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.heroPoint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 600;
}

.heroPoint::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
}

.heroMeta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.heroMeta__item {
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(16, 19, 15, 0.76), rgba(10, 11, 10, 0.48));
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
}

.heroMeta__item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.heroMeta__item span {
  display: block;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.6;
}

.heroCard {
  position: relative;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(15, 18, 14, 0.88), rgba(7, 9, 8, 0.76));
  box-shadow: var(--shadow-soft), var(--shadow-glow);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.heroCard::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 29px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 50%);
  pointer-events: none;
}

.heroCard > * {
  position: relative;
  z-index: 1;
}

.heroCard__eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.heroCard__title {
  font-size: clamp(1.7rem, 2.6vw, 2.25rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.heroCard__list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 14px;
}

.heroCard__list li {
  position: relative;
  padding-left: 24px;
  color: var(--color-muted);
  line-height: 1.6;
}

.heroCard__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 5px rgba(242, 154, 31, 0.12);
}

.heroCard__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.heroCard__link::after {
  content: ">";
  transition: transform 0.25s ease;
}

.heroCard__link:hover::after,
.heroCard__link:focus-visible::after {
  transform: translateX(4px);
}

.btnRow {
  justify-content: flex-start;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  font-size: 13px;
  border-radius: 12px;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.btn--primary {
  background: var(--color-accent);
  box-shadow: 0 12px 30px rgba(242, 154, 31, 0.28);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.04);
}

.btn--dark {
  background: #111;
  border: 1px solid #111;
  color: #fff;
}

.btn--primary:hover,
.btn--ghost:hover,
.btn--dark:hover,
.btn--primary:focus-visible,
.btn--ghost:focus-visible,
.btn--dark:focus-visible {
  transform: translateY(-2px);
}

.btn--dark:hover,
.btn--dark:focus-visible {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #111;
}

.impactStrip {
  position: relative;
  z-index: 4;
  margin-top: -52px;
}

.impactStrip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.impactCard {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(17, 22, 16, 0.94), rgba(10, 12, 10, 0.9));
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.impactCard.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.impactCard strong {
  display: block;
  margin-bottom: 8px;
  font-size: 19px;
}

.impactCard p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.65;
}

.section--dark {
  padding-top: 124px;
}

.p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.8;
}

.planTag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.08);
  color: #4f4a43;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.planTag--featured {
  background: rgba(242, 154, 31, 0.18);
  color: #8f5000;
}

.planCopy {
  min-height: 74px;
  margin-bottom: 24px;
  color: #5f5a52;
  line-height: 1.65;
}

.pricing {
  gap: 28px;
  align-items: stretch;
}

.pricing .card {
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 26px;
  padding: 28px 28px 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 246, 240, 0.98));
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.pricing .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, rgba(117, 129, 95, 0.45), rgba(242, 154, 31, 0.72));
}

.pricing .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.16);
}

.card--featured {
  border: 1px solid rgba(242, 154, 31, 0.34);
  background: linear-gradient(180deg, #fff8ee 0%, #fffdf8 100%);
  box-shadow: 0 24px 62px rgba(189, 111, 10, 0.14);
}

.card--featured::before {
  background: linear-gradient(90deg, rgba(242, 154, 31, 0.95), rgba(255, 207, 133, 0.95));
}

.cardIcon {
  top: 24px;
  left: auto;
  right: 24px;
  width: 58px;
  height: 58px;
  padding: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.pricing .card:hover .cardIcon {
  transform: rotate(-6deg) scale(1.04);
}

.cardIcon img {
  width: 72px;
}

.card h3 {
  padding-right: 84px;
  margin-bottom: 10px;
  font-size: 26px;
  line-height: 1.05;
}

.planMeta {
  display: grid;
  gap: 3px;
  margin-bottom: 16px;
}

.planMeta strong {
  font-size: 14px;
  font-weight: 800;
  color: #111;
  letter-spacing: 0.02em;
}

.planMeta span {
  font-size: 13px;
  line-height: 1.5;
  color: #756d63;
}

.planCopy {
  min-height: 0;
  margin-bottom: 16px;
}

.planListLabel {
  margin: 0 0 12px;
  color: #111;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.planList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
}

.planList li {
  position: relative;
  padding: 11px 0 11px 28px;
  margin: 0;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.planList li:last-child {
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.planList li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 5px rgba(242, 154, 31, 0.12);
}

.card .btn {
  width: 100%;
  justify-content: center;
  margin-top: 22px;
}

.card--featured .btn--dark {
  box-shadow: 0 16px 32px rgba(242, 154, 31, 0.2);
}

@media (max-width: 980px) {
  .pricing .card {
    padding: 28px 24px 24px;
  }

  .card h3 {
    padding-right: 72px;
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  .pricing {
    gap: 22px;
  }

  .pricing .card {
    border-radius: 22px;
    padding: 24px 20px 22px;
  }

  .cardIcon {
    top: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }

  .card h3 {
    padding-right: 62px;
    font-size: 22px;
  }

  .planMeta strong,
  .planListLabel {
    font-size: 12px;
  }

  .planMeta span,
  .planCopy,
  .planList li {
    font-size: 13px;
  }
}

.card ul li {
  color: #302c27;
}

/* ================= PLANES V2 (COMPARACION) ================= */

.planesAlt {
  position: relative;
  padding: 110px 0 130px;
  background:
    radial-gradient(circle at 14% 20%, rgba(242, 154, 31, 0.12), transparent 36%),
    radial-gradient(circle at 86% 24%, rgba(145, 120, 86, 0.08), transparent 34%),
    #f5f1e8;
  color: #151310;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.planesAltHeader {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.planesAltEyebrow {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  background: rgba(17, 17, 17, 0.04);
  color: #6a4a20;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.planesAltHeader h2 {
  font-size: clamp(2rem, 4.2vw, 3rem);
  margin-bottom: 10px;
  line-height: 1.08;
  color: #16130f;
}

.planesAltHeader p {
  margin: 0;
  color: #5f574c;
  font-size: 16px;
  line-height: 1.6;
}

.pricingCompact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.compactCard {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 244, 237, 0.98));
  color: #141311;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  padding: 24px 22px 22px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.compactCard--featured {
  background: linear-gradient(180deg, #fff8eb, #fffef9);
  border-color: rgba(242, 154, 31, 0.5);
  box-shadow: 0 24px 58px rgba(242, 154, 31, 0.18);
}

.compactTag {
  display: inline-flex;
  align-self: flex-start;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.08);
  color: #4f4a43;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.compactTag--featured {
  background: rgba(242, 154, 31, 0.2);
  color: #8f5000;
}

.compactCard h3 {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 12px;
}

.compactCard h3 span {
  font-size: 14px;
  font-weight: 600;
  color: #787168;
}

.compactLead {
  margin: 0 0 10px;
  color: #645d53;
  font-size: 14px;
  line-height: 1.55;
}

.compactCapacity {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 8px 0 18px;
}

.compactCapacity div {
  padding: 11px 10px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 12px;
  background: rgba(17, 17, 17, 0.035);
}

.compactCapacity strong,
.compactCapacity span {
  display: block;
}

.compactCapacity strong {
  color: #17130e;
  font-size: 15px;
  line-height: 1.2;
}

.compactCapacity span {
  margin-top: 3px;
  color: #746b60;
  font-size: 11px;
  line-height: 1.25;
}

.compactInherits {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #111;
}

.compactCard ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  flex-grow: 1;
}

.compactCard li {
  position: relative;
  padding-left: 20px;
  color: #312d27;
  line-height: 1.45;
  font-size: 14px;
}

.compactCard li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}

.compactCard li.compactUnavailable {
  color: #837b70;
}

.compactCard li.compactUnavailable::before {
  width: 9px;
  height: 2px;
  top: 0.68rem;
  border-radius: 2px;
  background: #a69e93;
}

.compactCard .btn {
  width: 100%;
  justify-content: center;
  margin-top: 18px;
}

.plansFootnote {
  margin: 28px auto 0;
  color: #665e53;
  font-size: 13px;
  text-align: center;
}

.formTrap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}

/* Force official plans section to remain light after consolidation */
section#producto.planesAlt {
  background:
    radial-gradient(circle at 14% 20%, rgba(242, 154, 31, 0.12), transparent 36%),
    radial-gradient(circle at 86% 24%, rgba(145, 120, 86, 0.08), transparent 34%),
    #f5f1e8 !important;
  color: #151310 !important;
}

section#producto.planesAlt .planesAltEyebrow {
  border-color: rgba(17, 17, 17, 0.16) !important;
  background: rgba(17, 17, 17, 0.04) !important;
  color: #6a4a20 !important;
}

section#producto.planesAlt .planesAltHeader h2 {
  color: #16130f !important;
}

section#producto.planesAlt .planesAltHeader p {
  color: #5f574c !important;
}

@media (max-width: 1000px) {
  .pricingCompact {
    grid-template-columns: 1fr;
  }

  .compactCard {
    padding: 22px 20px;
  }
}

  /* ================= PLANES V3 (MATRIZ RAPIDA) ================= */

  .planesMatrix {
    padding: 110px 0 130px;
    background: linear-gradient(180deg, #f3ede2 0%, #ffffff 24%, #f7f4ee 100%);
    color: #111;
  }

  .planesMatrixHeader {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 36px;
  }

  .planesMatrixEyebrow {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(17, 17, 17, 0.16);
    background: rgba(17, 17, 17, 0.04);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  .planesMatrixHeader h2 {
    margin-bottom: 10px;
    font-size: clamp(2rem, 4.2vw, 3rem);
    line-height: 1.08;
  }

  .planesMatrixHeader p {
    margin: 0;
    color: #635d54;
    font-size: 16px;
  }

  .matrixQuickCards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 26px;
  }

  .matrixQuickCard {
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 18px;
    padding: 16px 16px 14px;
    background: #fff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.07);
  }

  .matrixQuickCard--featured {
    border-color: rgba(242, 154, 31, 0.48);
    box-shadow: 0 14px 30px rgba(242, 154, 31, 0.18);
  }

  .matrixQuickTag {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.08);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .matrixQuickCard h3 {
    margin-bottom: 6px;
    font-size: 22px;
    line-height: 1.1;
  }

  .matrixQuickCard p {
    margin: 0;
    color: #5d564d;
    line-height: 1.45;
    font-size: 14px;
  }

  .matrixTableWrap {
    border-radius: 20px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    background: #fff;
    overflow: auto;
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.1);
  }

  .matrixTable {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
  }

  .matrixTable thead th {
    background: #171512;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 14px;
    text-align: left;
  }

  .matrixTable tbody th,
  .matrixTable tbody td {
    padding: 14px;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
    font-size: 14px;
    vertical-align: middle;
  }

  .matrixTable tbody th {
    width: 220px;
    background: rgba(17, 17, 17, 0.03);
    font-weight: 700;
  }

  .matrixTable tbody td {
    color: #332f29;
  }

  .matrixTable a {
    color: #1e1a15;
    font-weight: 700;
    text-decoration: underline;
  }

  .matrixCheck {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: #165f45;
  }

  .matrixCheck::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #18a06f;
  }

  .matrixDash {
    color: #6b655d;
    font-weight: 600;
  }

  @media (max-width: 1100px) {
    .matrixQuickCards {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 600px) {
    .planesMatrix {
      padding: 90px 0 100px;
    }

    .planesMatrixHeader p {
      font-size: 14px;
      line-height: 1.55;
    }

    .matrixQuickCard h3 {
      font-size: 20px;
    }

    .matrixQuickCard p {
      font-size: 13px;
    }
  }

.card .btn {
  align-self: flex-start;
  margin-top: 28px;
}

.card--featured .btn--dark {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #111;
}

.tabss {
  background: linear-gradient(180deg, #f5eee1 0%, #fff 18%);
}

.appSplit__content .btn {
  background: #111;
  border: 1px solid #111;
  color: #fff;
}

.appSplit__content .btn:hover,
.appSplit__content .btn:focus-visible {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #111;
}

section#tabs.tabss {
  position: relative;
  background: linear-gradient(180deg, #f5eee1 0%, #fff 18%);
  padding: 100px 0 110px;
  color: #111;
}

section#tabs .appsHeader {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 24px;
}

section#tabs .appsEyebrow {
  display: inline-flex;
  padding: 8px 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  background: rgba(17, 17, 17, 0.04);
  color: #6a4a20;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

section#tabs .appsHeader h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4.2vw, 2.9rem);
  line-height: 1.08;
}

section#tabs .appsHeader p {
  margin: 0;
  color: #5f574c;
  font-size: 16px;
  line-height: 1.6;
}

section#tabs .appTabs {
  gap: 12px;
  margin-bottom: 24px;
}

section#tabs .appTab {
  background: #6f6b63;
  border-radius: 999px;
}

section#tabs .appSplit {
  min-height: 450px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

section#tabs .appSplit__img {
  min-height: 450px;
}

section#tabs .appSplit__content {
  padding: 48px 52px;
}

section#tabs .appSplit__content h3 {
  margin-bottom: 10px;
  font-size: 30px;
}

section#tabs .appSplit__content p {
  margin-bottom: 18px;
}

section#tabs .appSplit__content ul {
  margin-bottom: 20px;
}

section#tabs .appSplit__content li {
  margin-bottom: 0;
}

section#tabs .appKicker {
  display: inline-flex;
  align-self: flex-start;
  padding: 7px 11px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(242, 154, 31, 0.15);
  color: #8f5000;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

section#tabs .appBenefits {
  display: grid;
  gap: 8px;
}

section#tabs .appBenefits li {
  position: relative;
  padding: 10px 12px 10px 28px;
  border-radius: 12px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: linear-gradient(180deg, rgba(246, 243, 236, 0.92), rgba(255, 255, 255, 0.96));
  color: #2f2b26;
  font-size: 14px;
  line-height: 1.42;
}

section#tabs .appBenefits li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  transform: translateY(-50%);
}

section#tabs .appMetaRow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -4px 0 18px;
}

section#tabs .appMetaRow span {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.06);
  color: #4f4a43;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact {
  background: linear-gradient(180deg, #050505 0%, #0d100c 100%);
}

.contactWrap {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.formIntro {
  margin-bottom: 28px;
}

.formEyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
}

.formCard h3 {
  font-size: 30px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.formCard p {
  color: #575149;
  line-height: 1.7;
}

.formCard input,
.formCard textarea {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 6px 6px 0 0;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.formCard input::placeholder,
.formCard textarea::placeholder {
  color: rgba(34, 34, 34, 0.42);
}

.formCard input:focus,
.formCard textarea:focus {
  border-bottom-color: var(--color-accent);
  box-shadow: 0 10px 22px rgba(242, 154, 31, 0.14);
}

.formStatus {
  min-height: 26px;
  margin: 14px 0 0;
  font-size: 13px;
  font-weight: 700;
}

.formStatus.is-error {
  color: #9a3412;
}

.formStatus.is-success {
  color: #0f766e;
}

.formNote {
  margin-top: 12px;
  font-size: 13px;
  color: #6a645d;
}

.contactImg {
  position: relative;
  display: flex;
  align-items: flex-end;
}

.contactImg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.72) 100%);
}

.contactHighlight {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 32px;
  color: #fff;
}

.contactHighlight__eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.contactHighlight h3 {
  font-size: 34px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.contactHighlight p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.65;
}

.contactHighlight ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.contactHighlight li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.88);
}

.contactHighlight li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}

@media (max-width: 1100px) {
  .heroLayout {
    grid-template-columns: 1fr;
  }

  .heroCard {
    max-width: 640px;
  }

  section#tabs .appSplit {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  section#tabs .appSplit__img {
    min-height: 240px;
  }

  section#tabs .appSplit__content {
    padding: 34px 24px;
  }
}

@media (max-width: 768px) {
  .hero__content {
    padding: 132px 0 68px;
  }

  .heroLayout,
  .heroCopy {
    text-align: center;
  }

  .hero__eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  .heroPoints,
  .btnRow {
    justify-content: center;
  }

  .hero__sub {
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
  }

  .heroMeta {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .heroCard {
    padding: 24px;
  }

  .impactStrip {
    margin-top: 0;
    padding: 24px 0 0;
  }

  .impactStrip__grid {
    grid-template-columns: 1fr;
  }

  .section--dark {
    padding-top: 92px;
  }

  .formCard h3,
  .contactHighlight h3 {
    font-size: 26px;
  }

  .contactHighlight {
    padding: 24px 20px 28px;
  }
}

@media (max-width: 600px) {
  section#tabs.tabss {
    padding: 84px 0 92px;
  }

  section#tabs .appsHeader {
    margin-bottom: 28px;
  }

  section#tabs .appsHeader p {
    font-size: 14px;
    line-height: 1.55;
  }

  section#tabs .appTabs {
    margin-bottom: 20px;
  }

  section#tabs .appTab {
    max-width: none;
    width: 100%;
    padding: 12px 16px;
    font-size: 13px;
  }

  section#tabs .appKicker {
    font-size: 10px;
  }

  section#tabs .appSplit__img {
    min-height: 190px;
  }

  section#tabs .appSplit__content {
    padding: 26px 18px;
  }

  section#tabs .appSplit__content h3 {
    font-size: 24px;
  }

  section#tabs .appSplit__content li {
    font-size: 14px;
    margin-bottom: 5px;
  }

  section#tabs .appMetaRow {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin: -2px 0 20px;
  }

  section#tabs .appMetaRow span {
    justify-content: center;
  }

  .hero {
    padding: 0;
    min-height: 100svh;
    align-items: flex-start;
  }

  .hero--video {
    align-items: flex-start;
  }

  .hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.64) 0%,
      rgba(0, 0, 0, 0.36) 34%,
      rgba(0, 0, 0, 0.82) 100%
    );
  }

  .manga-nav {
    padding: 8px 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(10px);
  }

  .nav-logo {
    height: 38px;
  }

  .hero__content {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 24px 8px 12px;
    text-align: center;
  }

  .heroLayout {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
  }

  .heroCopy {
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
    margin: 0 auto;
    padding: 12px 10px 14px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.38));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(6px);
  }

  .hero__eyebrow {
    display: none;
  }

  .hero__kicker {
    width: auto;
    max-width: 100%;
    margin-bottom: 14px;
    padding: 0;
    background: none;
    border: 0;
    border-radius: 0;
    font-size: clamp(2rem, 8.8vw, 2.6rem);
    line-height: 1.02;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.58);
  }

  .hero__kicker span,
  .hero__sub {
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.58);
  }

  .hero__sub {
    max-width: 100%;
    margin: 0 auto 22px;
    font-size: 15px;
    text-align: center;
  }

  .heroPoints {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 22px;
  }

  .heroPoint {
    width: 100%;
    justify-content: center;
    font-size: 13px;
    padding: 8px 12px;
  }

  .heroMeta,
  .heroCard {
    display: none;
  }

  .heroCopy .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .heroStats {
    grid-template-columns: 1fr;
  }

  .contactWrap {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .contactImg,
  .contactHighlight {
    display: none;
  }

  .appSplit__img {
    display: block;
    min-height: 520px;
  }
}

@media (max-width: 820px) {
  #contacto .contactWrap {
    grid-template-columns: 1fr !important;
    overflow: visible;
  }

  #contacto .contactImg {
    display: none !important;
  }
}
