
@font-face {
   font-family: 'AvantGardeDemi';
   src: url("/static/fonts/avantgarde_demi.ttf") format('truetype');
   font-weight: normal;
   font-style: normal;
}
@font-face {
   font-family: 'ITC Avant Garde Std bold';
   src: url("/static/fonts/ITC Avant Garde Gothic Std Bold.otf") format('opentype');
   font-weight: normal;
   font-style: normal;
}
@font-face {
   font-family: 'ITCAvantGardePro-Md';
   src: url("/static/fonts/ITC Avant Garde Gothic Std Medium.otf") format('opentype');
   font-weight: normal;
   font-style: normal;
}
@font-face {
   font-family: 'Garde Gothic Std Book';
   src: url("/static/fonts/ITC Avant Garde Gothic Std Book.otf") format('opentype');
   font-weight: normal;
   font-style: normal;
}

.fs-25{
   font-size: 25px;
   font-family: 'ITCAvantGardePro-Md';

}
:root {
   --color-primary: #1a53c7;
   --color-secondary: #00e0c6;
   --color-secondary-2: #55ffd4;
   --color-default: #222;
   --color-light: #fff;
   --color-dark: #040847;
   --color-bg-light: #f8f9fa;
   --color-bg-section: #eafcff;
   --color-bg-card: #fff;
   --color-bg-dark: #263238;
   --color-bg-gray: #f2f3f5;
   --color-bg-gray2: #e0e0e0;
   --color-accent: #0076ff;
   --color-shadow: rgba(0,0,0,0.08);
   --color-shadow-strong: rgba(0,0,0,0.18);
   --color-popular: #e0f7fa;
   --color-popular-text: #00695c;
}
.color-secundario{
   color: var(--color-secondary);
}
.color-secundario-2{
   color: var(--color-secondary-2);
}
.color-primario{
   color: var(--color-primary);
}
.color-dark{
   color: var(--color-dark)!important;
}
.color-azul{
   color: var(--color-accent);
}
.color-black{
   color: black !important;
}
body, html {
   height: 100%;
   margin: 0;
   padding: 0;
}
body {
   font-family: 'ITCAvantGardePro-Md', Arial, sans-serif;
   background: url("/static/media_mockup/BGweb.png") no-repeat ;
   background-size: cover;
}

/* HERO */
.main-hero {
   min-height: 95vh;
   height: 95vh;
   border-radius: 24px;
   margin: 16px;
   position: relative;
   overflow: hidden;
   display: flex;
   flex-direction: column;
   box-shadow: 0 8px 32px var(--color-shadow-strong);
}
.main-hero::before {
   content: "";
   position: absolute;
   inset: 0;
   z-index: 0;
   background: linear-gradient(120deg, rgba(0,0,0,0.4) 40%, rgba(0,212,255,0.2) 100%), url("/static/media_mockup/imagen home.png") center center / cover no-repeat;
   opacity: 1;
   width: 100%;
   height: 100%;
   display: block;
}
.main-hero > * {
   position: relative;
   z-index: 1;
}

/* NAVBAR */
.navbar {
   background: transparent !important;
   box-shadow: none;
   padding-left: 130px;
}
.navbar-brand img {
   height: 38px;
}
.navbar .nav-link, .navbar .btn {
   color: var(--color-default) !important;
   font-weight: 500;
   margin-right: 18px;
}
.navbar .btn {
   background: transparent;
   color: var(--color-default) !important;
   border: none;
   border-radius: 24px;
   padding: 6px 22px;
   font-weight: 500;
   margin-right: 10px;
   transition: background 0.2s, color 0.2s;
}
/* Solo texto para "Regístrate" */
.navbar .btn:not(.btn-light) {
   color: var(--color-default) !important;
   border: none;
   background: transparent;
}
/* Solo borde azul para "Inicia sesión" */
.navbar .btn-light {
   background: transparent;
   color: var(--color-dark) !important;
   border: 2px solid var(--color-dark);
   border-radius: 24px;
   padding: 6px 22px;
   font-weight: bold;
   box-shadow: none;
}
/*BOTONES*/
.btn:hover {
   background: rgba(4, 8, 71, 0.08);
   opacity: 0.85;
}
/* HERO CONTENT */
.hero-content {
   color: var(--color-light);
   padding: 0px 0 0 0;
   max-width: 700px;
   margin-left: 150px;
}
.hero-content h1 {
   font-family: 'AvantGardeDemi';
   font-size: 3rem;
   font-weight: 800;
   margin-bottom: 18px;
   color: var(--color-dark);
   line-height: 1.15;
}
.hero-content h1 .highlight {
   color: var(--color-light);

}
.hero-content p {

   margin-bottom: 32px;
   color: var(--color-dark);
   line-height: 1.15;
}

/* SEARCH BAR */
.search-bar {
   background: var(--color-dark);
   border-radius: 20px;
   box-shadow: 0 4px 24px var(--color-shadow);
   padding: 6px 8px;
   display: flex;
   align-items: center;
   max-width: 800px;
   margin: 0 auto;
   gap: 0;
   position: relative;
}
.search-bar .search-group {
   display: flex;
   align-items: center;
   flex: 1;
   padding: 0 18px;
   background: transparent;
   color: var(--color-light);
   border-radius: 32px 0 0 32px;
   height: 48px;
}
.search-bar .search-group:last-child {
   border-radius: 0 32px 32px 0;
}
.search-bar input {
   border: none;
   background: transparent;
   outline: none;
   font-size: 1.1rem;
   color: var(--color-light) !important; /* <-- fuerza el color blanco */
   flex: 1;
   padding: 8px 0 8px 8px;
   
}
.search-bar input::placeholder {
   color: var(--color-light) !important;
   opacity: 1;
}
.search-bar i {
   color: var(--color-light);
   font-size: 1.1rem;
}
.search-bar .separator {
   width: 2px;
   height: 32px;
   background: rgba(255,255,255,0.5);
   margin: 0 0;
   border-radius: 2px;
}
.search-bar .btn-search {
   background: var(--color-secondary);
   color: var(--color-default);
   border-radius: 10px;
   padding: 8px 32px;
   border: none;
   font-weight: bold;
   font-size: 1.1rem;
   margin-left: 12px;
   transition: background 0.2s, color 0.2s;
   box-shadow: 0 2px 8px 0 rgba(0,212,255,0.08);
}
/* .search-bar .btn-search:hover {
   background: linear-gradient(90deg, #00bfae 60%, #009ee0 100%);
   color: #fff;
} */

/* CONEXIONES QUE TRANSFORMAN */
.section-conexiones {
   min-height: 90vh;
   display: flex;
   align-items: center;
   padding-top: 0;
   padding-bottom: 0;
}
.titulo-conexiones {
   font-size: 60px;
   /*font-weight: 700;*/
   margin-bottom: 1rem;
   color: #040847;
   font-family: 'Garde Gothic Std Book';
}
.titulo-conexiones .fw-bold{
   font-family: 'ITC Avant Garde Std bold';

}
.descripcion-conexiones {
   font-size: 1.1rem;
   margin-bottom: 2.5rem;
   color: #333;
   padding-left: 120px;
   padding-right: 120px;
}
.card-conexion {
   background-size: cover;
   background-position: center;
   border-radius: 55px;
   padding: 35px 20px;
   color: white;
   position: relative;
   overflow: hidden;
   transition: transform 0.3s;
   display: flex;
   align-items: center;
   justify-content: center;
}
.card-conexion:hover {
   transform: translateY(-8px);
}
.texto-card {
   position: static;
   font-size: 40px;
   font-weight: 700;
   text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
   width: 100%;
   text-align: center;
}

/* VENTAJAS COMPETITIVAS */
.section-ventajas {
   position: relative;
   min-height: 100vh;
   display: flex;
   align-items: center;
   justify-content: center;
   overflow: hidden; /* <-- Esto evita scroll vertical extra */
   padding: 0;
   /* margin: 16px; */
   border-radius: 24px;
}
.ventajas-bg {
   position: absolute;
   inset: 0;
   background: url("/static/media_mockup/imagen_ventajas.png") center center/contain no-repeat;
   z-index: 0;
   filter: brightness(0.85);
   border-radius: 24px;
   width: 100%;
   height: 100%;
}
.ventajas-content {
   position: relative;
   z-index: 1;
   width: 100%;
   max-width: 1200px;
   padding: 150px 0 40px 0;

}
.ventajas-titulo {
   font-size: 50px;
   color: #fff;
   font-weight: 300;
   margin-bottom: 0.5rem;
   line-height: 1.1;
   text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.ventajas-highlight {
   color: #00e0c6;
   font-weight: 800;
   font-size: 50px;
   letter-spacing: 1px;
   text-shadow: 0 2px 8px rgba(0,0,0,0.18);
   font-family: 'AvantGardeDemi';
}
.ventajas-desc {
   color: #fff;
   font-size: 19px;
   margin-bottom: 2.5rem;
/*   max-width: 900px;
   margin-left: auto;
   margin-right: auto;*/
   text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.ventajas-carrusel-wrapper {
   position: relative;
   width: 100%;
   margin: 0 auto;
   padding-bottom: 32px;
   overflow: hidden; /* <-- Esto evita scroll vertical extra */
}
.ventajas-carrusel {
   display: flex;
   gap: 32px;
   overflow-x: auto;
   overflow-y: hidden; /* <-- Solo scroll horizontal */
   scroll-behavior: smooth;
   padding-bottom: 16px;
   /* Evita que crezca verticalmente */
   max-height: 100%;
}
.ventaja-card {
   min-width: 320px;
   max-width: 340px;
   background: rgba(4, 8, 71, 0.75);
   border-radius: 28px;
   padding: 32px 24px 24px 24px;
   color: #fff;
   box-shadow: 0 4px 24px rgba(0,0,0,0.13);
   flex-shrink: 0;
   display: flex;
   flex-direction: column;
   align-items: flex-start;
   position: relative;
}
.ventaja-card h3 {
   font-size: 1.3rem;
   font-weight: 600;
   margin-bottom: 12px;
   color: #fff;
}
.ventaja-card .fw-bold {
   font-weight: 800;
}
.ventaja-card p {
   font-size: 1rem;
   margin-bottom: 18px;
   color: #e0e0e0;
}
.ventaja-icon {
   display: flex;
   /*align-items: center;*/
   /*justify-content: center;*/
   justify-content: flex-end; 
   margin-right: 12px;
   font-size: 1.2rem;
   color: #0076ff;
   width: 100%;      /* <-- Solo el ancho del ícono */
   min-width: 0;     /* <-- No fuerza ancho mínimo */
   flex: 0 0 auto;   /* <-- No crece ni se encoge */
}
.btn-carrusel {
   background: #00e0c6;
   color: #040847;
   border: none;
   border-radius: 24px;
   padding: 8px 32px;
   font-weight: bold;
   font-size: 1.1rem;
   margin-top: auto;
   transition: background 0.2s, color 0.2s;
   box-shadow: 0 2px 8px 0 rgba(0,212,255,0.08);
}
.btn-carrusel:hover {
   background: #00bfae;
   color: #fff;
}
.ventajas-scrollbar {
   width: 100%;
   height: 8px;
   background: #e0e0e0;
   border-radius: 3px;
   margin-top: 16px;
   position: relative;
   overflow: hidden;
}
.ventajas-scrollbar-bar {
   height: 100%;
   background: #00e0c6;
   border-radius: 3px;
   transition: width 0.3s, left 0.3s;
   position: absolute;
   left: 0;
   top: 0;
   width: 0; /* Se ajustará por JS */
}

/* FOOTER */
.meliora-footer {
   background: #040404;
   color: #fff;
   padding: 40px 0 0 0;
   font-size: 15px;
   font-family: 'AvantGardeDemi', Arial, sans-serif;
}
.footer-container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 32px;
}
.footer-cols {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   gap: 24px;
}
.footer-col ul {
   list-style: none;
   padding: 0;
   margin: 0;
}
.footer-col ul li {
   margin-bottom: 5px;
}
.footer-col strong {
   font-size: 1.1rem;
   color: #fff;
   font-weight: 700;
}
.footer-col a {
   color: #fff;
   text-decoration: none;
   opacity: 0.85;
   transition: opacity 0.2s;
   font-weight: 400;
}
.footer-col a:hover {
   opacity: 1;
   text-decoration: underline;
}
.footer-apps {
   display: flex;
   gap: 8px;
   margin-top: 8px;
}
.footer-app-icon {
   height: 28px;
   width: 83px;
   display: block;
}

.footer-social {
   display: flex;
   gap: 10px;
   margin-bottom: 10px;
}
.footer-social a {
   color: #00e0c6;
   font-size: 1.2rem;
   opacity: 1;
}
.footer-divider {
   border: none;
   border-top: 4px solid #00e0c6;
   margin: 32px 0 18px 0;
   width: 100%;
}
.footer-bottom {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   align-items: center;
   font-size: 0.98rem;
   padding-bottom: 18px;
}
.footer-copy {
   color: #fff;
   opacity: 0.8;
   font-size: 12px;
}
.footer-links a {
   color: #fff;
   margin-left: 32px;
   opacity: 0.8;
   text-decoration: none;
   font-size: 12px;
}
.footer-links a:first-child {
   margin-left: 0;
}
.footer-links a:hover {
   opacity: 1;
   text-decoration: underline;
}
@media (max-width: 900px) {
   .footer-cols {
       flex-direction: column;
       gap: 32px;
   }
   .footer-bottom {
       flex-direction: column;
       gap: 10px;
       align-items: flex-start;
   }
   .footer-links a {
       margin-left: 0;
       margin-right: 18px;
   }
}

/* NUEVA SECCIÓN: PLANES */
.section-planes {
   position: relative;
   min-height: 100vh;
   display: flex;
   align-items: center;
   justify-content: center;
   overflow: hidden;
   padding: 0;
   margin: 16px;
   border-radius: 24px;
}
.planes-bg {
   position: absolute;
   inset: 0;
   z-index: 0;
   opacity: 1;
   border-radius: 24px;
}
.planes-content {
   position: relative;
   z-index: 1;
   width: 100%;
   max-width: 1200px;
   padding: 60px 0 40px 0;
}
.planes-titulo {
   font-size: 55px;
   color: #222;
   font-weight: 300;
   margin-bottom: 1.5rem;
   line-height: 1.1;
}
.planes-highlight {
   color: #1a53c7;
   font-weight: 800;
}
.planes-toggle {
   background: #fff;
   border-radius: 32px;
   display: inline-flex;
   padding: 4px;
   margin-bottom: 32px;
   box-shadow: 0 2px 8px rgba(0,0,0,0.04);
   border: 0.5px solid #dcdcdc; 
}
.toggle-btn {
   border: none;
   background: transparent;
   /*color: #  222;*/
   font-weight: 600;
   font-size: 1.1rem;
   border-radius: 32px;
   padding: 6px 32px;
   cursor: pointer;
   transition: background 0.2s, color 0.2s;
   width: 200px;
}
.toggle-btn.active, .toggle-btn:hover {
   background: #00e0c6;
   color: #fff;
}
.plan-card {
   background: #fff;
   border-radius: 32px;
   box-shadow: 0 4px 24px rgba(0,0,0,0.08);
   padding: 0 0 24px 0;
   display: flex;
   flex-direction: column;
   align-items: center;
   width: 100%;
   max-width: 100%;
   min-height: 480px;
   position: relative;
   overflow: hidden;
   border: 1px solid #dcdcdc;
}
.plan-empresario{
   background:var(--color-secondary-2)!important;
}
.plan-top {
   margin-bottom: 0.5rem;
}
.row-precio{
   display: flex;
   justify-content: center; /* centra horizontal */
   align-items: center;
   height: 68px;
}
.plan-logo-img {
   height: 48px;
   /* margin-bottom: 8px; */
}
.plan-title {
   font-size: 1.2rem;
   font-weight: 700;
   letter-spacing: 1px;
}
.plan-desc {
   font-size: 1rem;
   color: #888;
   margin-bottom: 0;
}
.precio-num b{
   font-family: 'AvantGardeDemi';
   font-size: 35px;
   margin-left:5px;
}
.plan-precio-badge {
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 22px;
   font-size: 1.3rem;
   font-weight: 700;
   padding: 14px 0;
   width: 90%;
   max-width: 260px;
   margin: 0 auto 18px auto;
}
.plan-precio-blue {
   background: var(--color-primary);
   color: var(--color-light);
}
.plan-precio-cyan {
   background: var(--color-popular);
   color: var(--color-popular-text);
}
.plan-beneficios-list {
   list-style: none;
   padding: 0 24px 0 24px; /* padding lateral */
   margin: 0 0 24px 0;
   width: 100%;
   flex: 1 1 auto; /* que crezca y empuje el botón abajo */
   display: flex;
   flex-direction: column;
   justify-content: flex-start;
}
.beneficio-row {
   display: flex;
   flex-direction: row;      /* Ícono a la izquierda, texto a la derecha */
   align-items: flex-start;      /* Centra verticalmente */
   justify-content: center;  /* Centra horizontalmente el conjunto */
   padding: 14px 0;
   width: 100%;
   text-align: left;
   min-height: 48px;
   box-sizing: border-box;
}
.beneficio-icon {
   display: flex;
   align-items: flex-start;
   justify-content: left;
   margin-right: 12px;
   font-size: 17px;
   color: #0076ff;
   width: auto;      /* <-- Solo el ancho del ícono */
   min-width: 0;     /* <-- No fuerza ancho mínimo */
   flex: 0 0 auto;   /* <-- No crece ni se encoge */
}

.beneficio-titulo {
   font-weight: 700;
   color: #0076ff;
   margin-right: 4px;
   display: inline;
}
.beneficio-desc {
   color: #0076ff;
   font-weight: 400;
   display: inline;
}
.beneficio-titulo,
.beneficio-desc {
  display: block;       /* hace que bajen uno debajo del otro */
  line-height: 1.2;     /* reduce espacio vertical (ajústalo a gusto) */
}
.plan-btn {
   width: 90%;
   max-width: 220px;
   margin: 0 auto 0 auto;
   margin-top: auto; /* siempre abajo */
   padding: 12px 0;
   border-radius: 24px;
   font-weight: 700;
   font-size: 1.1rem;
   transition: background 0.3s, transform 0.3s;
   position: relative;
   overflow: hidden;
   z-index: 1;
   display: block;
}


/* NUEVO ESTILO: ENCABEZADO DE LA SECCIÓN PLANES */
.planes-header {
   display: flex;
   align-items: center;
   justify-content: space-between;
   flex-wrap: wrap;
   margin-bottom: 32px;
   position: relative;
   font-family: 'AvantGardeDemi';
}
.planes-header-text {
   flex: 1;
   min-width: 250px;
   margin-right: 16px;
}
.planes-header-img {
   display: none;
   z-index: -1;
   position: absolute;
   right: 0;
}
@media (min-width: 768px) {
   .planes-header-img {
       display: block;
       max-width: 340px;
       height: auto;
   }
}

/* NUEVAS CLASES PARA LOS PLANES */
.plan-card {
   overflow: hidden;
   position: relative;
}
.plan-header {
   width: 100%;
   padding: 16px;
   background: #f8f9fa;
   border-radius: 24px 24px 0 0;
   display: flex;
   align-items: center;
   position: relative;
   z-index: 1;
}
.plan-title {
   font-size: 1.5rem;
   font-weight: 700;
   margin: 0;
}
.plan-desc {
   font-size: 1rem;
   color: #666;
   margin: 4px 0 0 0;
}

.plan-precio-badge {
   position: absolute;
   top: 16px;
   /* right: 16px; */
   padding: 8px 16px;
   border-radius: 40px;
   font-weight: 500;
   display: flex;
   align-items: center;
   z-index: 1;
}
.plan-precio-blue {
   background: var(--color-accent);
   color: #fff;
   height: 60px;
}
.plan-precio-dark {
   background: var(--color-dark);
   color: #fff;
   height: 60px;
}

.plan-precio-black {
   background: black;
   color: #fff;
   height: 60px;
}

.plan-precio-cyan {
   background: #e0f7fa;
   color: #00695c;
}
.plan-beneficios-list .beneficio-row:first-child {
  height: 60px;
}

.plan-beneficios-list {
   list-style: none;
   padding: 0;
   margin: 16px 0 0 0;
   width: 100%;
}
.beneficio-row {
   display: flex;
   flex-direction: row;      /* Ícono a la izquierda, texto a la derecha */
   align-items: center;      /* Centra verticalmente */
   justify-content: center;  /* Centra horizontalmente el conjunto */
   padding: 10px 0;
   width: 100%;
   text-align: left;
}
.beneficio-titulo {
   display: block;
   font-weight: 700;
   color: #0076ff;
   margin-bottom: 0;
}
.beneficio-desc {
   display: block;
   color: #0076ff;
   font-weight: 400;
   margin-top: 0;
}
.plan-btn {
   width: 100%;
   padding: 6px 0;
   border-radius: 40px;
   font-weight: 700;
   font-size: 1.1rem;
   transition: background 0.3s, transform 0.3s;
   position: relative;
   overflow: hidden;
   z-index: 1;
   border:none;
}
.plan-btn-blue {
   background: var(--color-accent);
   color: #fff;
}
.plan-btn-dark {
   background: var(--color-dark);
   color: #fff;
}
.plan-btn-black {
   background: #000;
   color: #fff;
}
.plan-btn:hover {
   transform: translateY(-2px);
}
.beneficio-row span {
   text-align: left;
   /* width: 100%; */
   display: inline-
}
.planes-header-img-bg {
   position: absolute;
   left: 0;
   bottom: 140px;
   z-index: 0; /* detrás del contenido */
   width: 340px;
   height: auto;
   pointer-events: none; /* para que no interfiera con clics */
}
.planes-header-img-bg-img {
   width: 100%;
   height: auto;
   display: block;
}
.section-planes {
   position: relative; /* para que el absolute sea relativo a la sección */
}
.planes-content {
   position: relative;
   z-index: 1; /* asegura que el contenido esté encima */
}
.row-dark{
 background: rgba(4, 8, 71, 0.05); /* fondo semi-transparente */
 color: #fff;                      /* texto permanece 100% opaco */
 height: 68px;
}
.row-light{
 height: 68px;
}

.icono-flecha {
   width: 75px;   /* ajusta según necesites */
   height: auto;
   vertical-align: middle; /* para alinearlo con el texto */
}
.w-80{
   width: 80%;
}

.overlay-img {
   position: absolute;
   top: 8px;
   right: 7px;
   width: 60px;
   height: 32px;
   z-index: -1;
}
.plan-sobrepuesto {
    position: relative; /* Contenedor relativo */
}
/* Tablets en orientación vertical y horizontal */
@media screen and (max-width: 1024px) {
  .section-planes {
    margin: 0px 20px;  /* reduce márgenes */
    flex-direction: column; /* opcional: apila contenido */
    min-height: auto; /* deja que el contenido defina la altura */
    padding: 10px; /* agrega respiro interno */
    border-radius: 16px; /* un poco menos redondeado */
  }
  .ventajas-content {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 1200px;
      padding: 70px 0px 40px 0px;
   }
   .ventajas-content {
      padding-top: 40px;
   }
   .ventajas-titulo {
      font-size: 50px;
      color: #fff;
      font-weight: 300;
      margin-bottom: 0.5rem;
      line-height: 1.1;
      text-shadow: 0 2px 8px rgba(0,0,0,0.18);
      /*padding-top:150px;*/
   }
   .ventajas-bg{
      top:-100px;
   }
   .section-ventajas{
      padding: 40px;
   }
   .ventajas-bg {
      position: absolute;
      inset: 0;
      background: url("/static/media_mockup/imagen_ventajas.png") center center/cover no-repeat;
      z-index: 0;
      filter: brightness(0.85);
      border-radius: 24px;
      width: 100%;
      height: 100%;
   }
   .w-80{
      width: 100%;
   }
   .navbar {
      background: transparent !important;
      box-shadow: none;
      padding-left: 10px;
   }
   .hero-content {
     color: var(--color-light);
     padding: 0px 0 0 0;
     max-width: 700px;
     margin-left: 50px;
   }
   .titulo-conexiones{
      font-size: 45px;
   }
   .descripcion-conexiones{
      font-size: 15px;
      padding-left: 50px;
      padding-right: 50px;
   }
   .card-conexion{
      padding: 10px 20px;
   }
   .texto-card{
      padding-top: 5px
   }

}

/* Opcional: tablets chicas y móviles grandes */
@media screen and (max-width: 768px) {
   .titulo-conexiones{
      font-size: 32px;
   }
   .descripcion-conexiones{
      font-size: 13px;
      padding-left: 10px;
      padding-right: 10px;
      text-align: center;
   }
   .toggle-btn{
      width: 100%;
   }
   .planes-header-text{
      text-align: center;
      margin-right: 0px;
   }
   .w-80{
      width: 100%;
   }
   .movil:not(:first-child) {
     padding-top: 20px; /* o lo que necesites */
   }
  .section-planes {
    margin: 0px 10px;
    padding: 15px;
    border-radius: 12px;
  }
   .navbar {
      background: transparent !important;
      box-shadow: none;
      padding-left: 10px;
   }

   .main-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      background: linear-gradient(120deg, rgba(0,0,0,0.4) 40%, rgba(0,212,255,0.2) 100%), url("/static/media_mockup/bg home.png") center center / cover no-repeat;
      opacity: 1;
      width: 100%;
      height: 100%;
      display: block;
   }
}
.salto {
  display: block; /* Cada span se mostrará en una nueva línea */
}
.beneficio-row-movil{
   display: none;
}
/* RESPONSIVE */
@media (max-width: 768px) {
   .main-hero, .hero-content, .search-bar {
       /*margin-left: 10px !important;*/
       max-width: 100% !important;
       font-size: 25px;
       margin:0px;
       border-radius: 0px;

   }
   .hero-content h1 {
      font-size: 28px;
      color: white;
      text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
      margin-bottom: 10px;
   }
   .hero-content p {
      font-size: 13px!important;
      text-align: justify;
      color: white;
       text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
       margin-bottom: 15px;
   }
   .hero-content {
       padding: 220px 20px 0 30px;

   }
   .search-bar {
       margin: 0 20px!important;
       flex-direction: column;
       gap: 8px;
       padding: 5px 10px!important;
       border-radius: 5px;
   }
   .ventajas-bg {
      background: none !important;
   }
   .section-ventajas{
      padding: 0px 20px;
      background: url("/static/media_mockup/bg ventajas.png") top center/cover no-repeat;
   }
   .ventajas-content{
      padding: 125px 0 40px 0;
   }
   .ventajas-titulo {
      font-size: 35px;
      line-height: 0.9;
      text-shadow: 0 2px 8px rgba(0,0,0,0.8);
   }
   .ventajas-highlight {
      font-size: 35px;
      text-shadow: 0 2px 8px rgba(0,0,0,1);
   }
   .ventajas-titulo .salto{
      display: inline;
   }
   .ventajas-desc{
      font-size: 12px;
      text-shadow: 0 2px 8px rgba(0,0,0,0.8);
   }
   .ventaja-card{
      border-radius: 15px;
   }
   .plan-precio-badge{
      position: relative;
      top: 0px;
      margin: auto;
      border-radius: 15px;
   }
   .beneficio-row-movil {
     display: flex;
     flex-direction: row;
     align-items: center;
     justify-content: center;
     padding: 0px 20px;
     width: 100%;
     text-align: left;
   }
   .plan-title{
      line-height: 20px;
   }
   .plan-btn{
      top:10px;
      border-radius: 10px;
   }
   .plan-top{
      display: none;
   }
   .planes-toggle{
      margin-bottom: 10px;
   }
   .btn-carrusel{
      border-radius: 10px;
   }
}
@media (max-width: 900px) {
   .search-bar {
       flex-direction: column;
       max-width: 100%;
       padding: 12px 10px;
   }
   .search-bar .search-group,
   .search-bar .btn-search {
       width: 100%;
       border-radius: 5px !important;
       margin: 4px 0;
   }
   .search-bar .separator {
       display: none;
   }
   .search-bar{
      background: rgba(4, 8, 71, 0.65);
   }
   .planes-titulo { font-size: 45px; }
   .plan-card { min-height: 400px; }
}
