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

body {
  font-family: 'Montserrat', sans-serif;
  background: #000;              /* ✅ fondo negro */
  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;
}

/* Mobile: botones uno debajo del otro */
@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 */
.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 ================= */
/* 🔑 ESTE ES EL PUNTO CLAVE */
@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;          /* espacio / caja */
  height: 90px;
  border: none;          /* ✅ sacamos el aro extra */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}

.feature-icon {
  width: 110px;          /* ✅ el ícono ya trae su aro */
  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; /* PARALLAX */
  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;
}

/* Grid de perfiles */
.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;
}

/* Responsive */
@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%;
}

/* CÍRCULO / BORDE */
.perfilIcon::before {
  content: "";
  position: absolute;
  inset: -10px; /* controla grosor del borde */
  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);
}

/* Micro realce del icono */
.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); /* más contraste */
  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;
}

/* Grid */
.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);
}

/* HOVER PRINCIPAL */
.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%);
  }
}

/* ================= ICONO ================= */

.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;
}

/* Icon hover */
.pricing .card:hover .cardIcon {
  transform: translateX(-50%) scale(1.08);
}

/* Cards */
.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%;
}

/* Icono */
.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;
}

/* Texto */
.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;
}

/* Pills */
.pillRow {
  margin-top: 72px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Responsive */
@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;
}

/* Overlay suave para legibilidad */
.footerOverlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.6);
}

/* Contenedor interno */
.footerInner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

/* Navegación */
.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;
}

/* Links */
.footerNav a {
  color: #111;
  text-decoration: none;
  position: relative;
}

.footerNav a:hover {
  text-decoration: underline;
}

/* Logo central */
.footerLogo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footerLogo img {
  width: 75px;
  height: auto;
}

/* Línea divisoria */
.footerDivider {
  display: block;
  width: 100%;
  height: 1px;
  background: #111;
  margin: 20px 0 14px;
  opacity: 0.6;
}

/* Copyright */
.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: BREAKPOINTS DEFINITIVOS ===== */
.features{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}

/* 2 columnas: tablets + la mayoría de mobiles */
@media (max-width: 900px){
  .features{
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

/* 1 columna SOLO en móviles muy chicos */
@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;
    line-height: 1.6;
    margin-bottom: 32px;
    padding: 0 12px;
  }

  /* Card principal */
  .contactWrap {
    margin: 0 12px;              /* aire lateral */
    border-radius: 16px;
  }

  /* Formulario */
  .formCard {
    padding: 28px 20px 36px;     /* MÁS aire */
  }

  /* Inputs */
  .formCard input,
  .formCard textarea {
    font-size: 16px;             /* clave para mobile (no zoom iOS) */
    padding: 10px 6px;
    margin-bottom: 22px;
  }

  .formCard label {
    font-size: 11px;
    margin-bottom: 4px;
  }

  /* Grillas a una columna */
  .grid2 {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* Botón */
  .formCard button {
    width: 100%;
    padding: 14px 0;
    font-size: 15px;
    border-radius: 10px;
  }

  /* Imagen */
  .contactImg {
    height: 220px;
    border-radius: 0 0 16px 16px;
  }
}

/* ================= CONTACT MOBILE: HIDE IMAGE ================= */
@media (max-width: 600px) {

  .contactImg {
    display: none;
  }

  /* Ajuste de card para ocupar todo el ancho */
  .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.jpg"); }
.appImg--web    { background-image: url("img/aplicacion-web.jpg"); }
.appImg--ia     { background-image: url("img/aplicacion-ia.jpg"); }

/* ================= 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;
  }

  .appSplit__img {
    display: block;
    min-height: 520px;
  }
}