/* CSS Document */
@font-face {
	font-family: Nunito;
  	src: url('../fonts/Nunito-VariableFont_wght.ttf');
	font-style: normal;
	font-weight: normal;
}

:root{
    /*Colores de redes sociales*/
    --blanco   : #FFFFFF;
    --negro    : #000000;
    --linkedin : #0374B5;
    --youtube  : #F20000;
    --twitter  : #1C93E4;
    --whats    : #39D554;
    --facebook : #1771E6;
    --mail     : #F2C55C;

    /*Colores del Pantone*/
    --azul        : #00539c;
    --azul-oscuro : #09086A;
    --amarillo    : #F6B044;
    --rosa        : #ED495C;
    --gris        : #d6d6de;
    --azul-claro  : #00539cad;

}

*{
	box-sizing: border-box !important;
	max-width: 100% !important;
	font-family: Nunito !important;
}

/*
html,
body {
    height: 100%;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    transition: all 500ms ease;
    overflow: hidden;
}

main {
    height: 100vh;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
}

.section-other:nth-child(1){
    height: auto;
    scroll-snap-align: start;
}

.section-other:not(:nth-child(1)){
    height: 100vh;
    scroll-snap-align: start;
}

.section:nth-child(4), .section:nth-child(6), .section:nth-child(7) {
    height: auto;
    scroll-snap-align: start;
}

.section:not(:nth-child(4), :nth-child(6), :nth-child(7)) {
    height: 100vh;
    scroll-snap-align: start;
}

.section:last-child {
    height: 100vh;
    scroll-snap-align: start;
}*/

/***** estilos del scroll *****/
*::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

*::-webkit-scrollbar-thumb {
    background: var(--azul-oscuro);
    border-radius: 4px;
}

*::-webkit-scrollbar-track {
    background: var(--blanco);
    border-radius: 4px;
}

*::placeholder {
    color: #999999 !important;
    font-weight: normal !important;
}

/******************************/
/**** STYLE SOCIAL MEDIA ****/
/******************************/
.social-bar{
    position: fixed;
    top: 20%;
    right: 1%;
}

.redes{
    z-index: 9999;
}

.texto-rosa{
    color: var(--rosa);
}

.redes a{
    display: flex;
    text-decoration: none;
    color: var(--blanco);
    width: 35px;
    height: 35px;
    border-radius: 20%;
    box-shadow: 0px 1px 10px var(--negro);
    transition: all 500ms ease;
    margin-bottom: 10px;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    line-height: 10px;
}

.redes a:hover{
    transform: scale(1.6);
}

.linkedin{
    background: var(--linkedin);
}

.youtube{
    background: var(--youtube);
}

.twitter{
    background: var(--twitter);
}

.whats{
    background: var(--whats);
}

.insta{
    background: #d6249f;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}

.face{
    background: var(--facebook);
}

.mail{
    background: var(--mail);
}

#social-media-mobile{
    display: none;
}

@media (max-width: 768px) {
    .social-bar{
		display: none;
	}

    #social-media-mobile{
        display: block;
    }
}

/******************************/
/**** STYLE FOR BACKGROUND ****/
/******************************/
@keyframes animate {
    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }
    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}

.background {
    position: fixed;
    width: calc(100vw);
    height: calc(100vh);
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    background: var(--blanco);
    overflow: hidden;
	z-index: -999;
}

.background ul.squares li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(0, 83, 156, 0.2);
    animation: animate 19s linear infinite;
}
.background ul.squares li:nth-child(0) {
    left: 1%;
    width: 104px;
    height: 104px;
    bottom: -104px;
    animation-delay: 1s;
}
.background ul.squares li:nth-child(1) {
    left: 78%;
    width: 144px;
    height: 144px;
    bottom: -144px;
    animation-delay: 5s;
}
.background ul.squares li:nth-child(2) {
    left: 77%;
    width: 169px;
    height: 169px;
    bottom: -169px;
    animation-delay: 9s;
}
.background ul.squares li:nth-child(3) {
    left: 3%;
    width: 171px;
    height: 171px;
    bottom: -171px;
    animation-delay: 6s;
}
.background ul.squares li:nth-child(4) {
    left: 55%;
    width: 183px;
    height: 183px;
    bottom: -183px;
    animation-delay: 4s;
}
.background ul.squares li:nth-child(5) {
    left: 73%;
    width: 133px;
    height: 133px;
    bottom: -133px;
    animation-delay: 15s;
}
.background ul.squares li:nth-child(6) {
    left: 58%;
    width: 137px;
    height: 137px;
    bottom: -137px;
    animation-delay: 24s;
}
.background ul.squares li:nth-child(7) {
    left: 9%;
    width: 125px;
    height: 125px;
    bottom: -125px;
    animation-delay: 31s;
}
.background ul.squares li:nth-child(8) {
    left: 1%;
    width: 114px;
    height: 114px;
    bottom: -114px;
    animation-delay: 18s;
}
.background ul.squares li:nth-child(9) {
    left: 52%;
    width: 180px;
    height: 180px;
    bottom: -180px;
    animation-delay: 32s;
}
/******************************/
/**** STYLE GALERY ABOUT OF****/
/******************************/
.galery {
    width: 100%;
    display: flex;
    justify-content: center;
    height: 500px;
    gap: 20px;
  
    > div {
      flex: 0 0 120px;
      border-radius: 0.5rem;
      transition: 0.5s ease-in-out;
      cursor: pointer;
      box-shadow: 1px 5px 15px var(--azul-oscuro);
      position: relative;
      overflow: hidden;
  
      &:nth-of-type(1) {
        background: url("../img/gal1_1.jpg")
          no-repeat 50% / cover;
      }
      &:nth-of-type(2) {
        background: url("../img/gal2_1.jpg")
          no-repeat 8% / cover;
      }
      &:nth-of-type(3) {
        background: url("../img/gal3.jpg")
          no-repeat 50% / cover;
      }
      &:nth-of-type(4) {
        background: url("../img/gal4_1.jpg")
          no-repeat 57% / cover;
      }
      &:nth-of-type(5) {
        background: url("../img/gal5.jpg")
          no-repeat 50% / cover;
      }
      &:nth-of-type(6) {
        background: url("../img/gal6.jpg")
          no-repeat 50% / cover;
      }
      &:nth-of-type(7) {
        background: url("../img/gal7.jpg")
          no-repeat 50% / cover;
      }
      &:nth-of-type(8) {
        background: url("../img/gal8.jpg")
          no-repeat 50% / cover;
      }
  
      .galery-item {
        font-size: 1.5rem;
        color: var(--blanco);
        display: flex;
        align-items: center;
        padding: 15px;
        opacity: 0;
        flex-direction: column;
        height: 100%;
        justify-content: flex-end;
        background: linear-gradient(0deg, rgba(9,8,106,1) 0%, rgba(9,8,106,0) 100%);
        transform: translatey(100%);
        transition: opacity 0.5s ease-in-out, transform 0.5s 0.2s;
        visibility: hidden;
  
        span {
          display: block;
          margin-top: 5px;
          font-size: 1.2rem;
        }
      }
  
      &:hover {
        flex: 0 0 250px;
        box-shadow: 1px 3px 15px var(--azul);
        transform: translatey(-30px);
      }
  
      &:hover .galery-item {
        opacity: 1;
        transform: translatey(0%);
        visibility: visible;
      }
    }
  }


@media (max-width: 1024px) {
	.galery {
	    width: 100%;
	    height: 300px;
	    gap: 5px;

		> div {
			flex: 0 0 65px;

			.galery-item {
				padding: 10px;
			}

			.galery-item h2{
				font-size: 35px;
			}

			&:hover {
				flex: 0 0 250px;
			}
		}
	}
}


@media (max-width: 768px) {
	.galery {
	    width: 100%;
	    height: 250px;
	    gap: 5px;

		> div {
			flex: 0 0 65px;

			.galery-item {
				padding: 1px;
			}

			.galery-item h2{
				font-size: 25px;
			}

			&:hover {
				flex: 0 0 180px;
			}
		}
	}
}


@media (max-width: 425px) {
	.galery {
	    width: 100%;
	    height: 150px;
	    gap: 1px;

		> div {
			flex: 0 0 50px;

			.galery-item {
				padding: 5px;
			}

			.galery-item h2{
				font-size: 15px;
			}

			&:hover {
				flex: 0 0 100px;
			}
		}
	}
}

/******************************/
/****     STYLES GENERAL   ****/
/******************************/
.text-azul{
    color: var(--azul) !important;
}

.text-azul-oscuro{
    color: var(--azul-oscuro) !important;
}

.text-amarillo{
    color: var(--amarillo) !important;
}

.text-rosa{
    color: var(--rosa) !important;
}

.text-gris{
    color: var(--gris) !important;
}

.bg-azul{
    background: var(--azul) !important;
}

.bg-azul-oscuro{
    background: var(--azul-oscuro) !important;
}

.bg-amarillo{
    background: var(--amarillo) !important;
}

.bg-rosa{
    background: var(--rosa) !important;
}

.bg-gris{
    background: var(--gris) !important;
}

.border-azul{
    border: 1px solid var(--azul) !important;
}

.border-azul-oscuro{
    border: 1px solid var(--azul-oscuro) !important;
}

.border-amarillo{
    border: 1px solid var(--amarillo) !important;
}

.border-rosa{
    border: 1px solid var(--rosa) !important;
}

.border-gris{
    border: 1px solid var(--gris) !important;
}

.nav-item a:hover{
    color: var(--amarillo) !important;
}

.btn-azul-oscuro:hover{
    color: var(--blanco) !important;
    background-color: var(--azul) !important;
}

.btn-azul-oscuro{
    border: 1px solid var(--azul) !important;
    color: var(--azul) !important;
    background-color: var(--blanco) !important;
}

.link-accept {
    color: var(--amarillo);
    cursor: pointer;
}

.text-degradado {
    background: linear-gradient(to right, #ED495C, #F6B045); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}

.line {
    height: 100px; 
    width: 1px; 
    background-color: #fff; 
    margin: 0 20px; 
}

.nav-item a:hover.btn{
    color: var(--azul-oscuro) !important;
    background-color: var(--amarillo) !important;
}

.car-header {
    background: linear-gradient(90deg, var(--azul) 0%, rgba(0, 89, 172, 0.241) 100%);
}

.header{
	padding: 20px;
	margin-bottom: 45px;    
	background: linear-gradient(90deg, var(--azul) 0%, rgba(255,255,255,.9) 100%), url(../img/header.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.conocelo{
    background: var(--amarillo);
    border: 1px solid var(--azul-oscuro);
    color: var(--azul-oscuro);
}

.conocelo:hover{
    background: var(--azul-oscuro);
    color: var(--blanco);
    border: 1px solid var(--azul);
}

.conocelo-btn:hover{
    background: var(--amarillo);
    border: 1px solid var(--azul-oscuro);
    color: var(--blanco);
    font-weight: bold;
}

.conocelo-btn{
    background: linear-gradient(90deg, #ED495C 0%, #F6B045 100%);
    border: 1px solid var(--azul-oscuro);
    color: var(--blanco);
    font-weight: bold;
}

.prueba:hover{
    background: var(--blanco);
    border: 1px solid var(--azul-oscuro);
    color: var(--azul-oscuro);
}

.prueba{
    background: var(--azul-oscuro);
    color: var(--blanco);
}

.navbar-nav .nav-link.active{
    color: var(--amarillo) !important;
}

.back-to-top {
    position: fixed;
    display: none;
    background: var(--amarillo) !important;
    color: var(--azul-oscuro) !important;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 1;
    font-size: 30px;
    border-radius: 50%;
    right: 20px;
    bottom: 80px;
    transition: background 0.5s;
    z-index: 9;
	padding: 5px;
	border: 1px solid var(--azul-oscuro);
}

.back-to-top:hover {
    color: var(--blanco);
    background: var(--azul);
	border: 1px solid var(--blanco);
}

.antes{
	position: relative;
}

.antes::before{
	position: absolute;
	content: "";
	background: linear-gradient(90deg, rgba(246,176,68,1) 0%, rgba(237,73,92,1) 50%, rgba(246,176,68,1) 100%);
	height: 8px;
	width: 410px;
	border-radius: 100%;
	left: calc(50% - 210px);
	bottom: -13px;
}

.swiper {
    width: 100%;
    z-index: 10;
}

.imagen-icono{
    height: 190px;
    width: 190px;
}

.imagen-icono-horizontal{
    width: 500px;
    height: 175px;
}

.swiper-slide {
    height: 450px !important;
	background: url(../img/icons_grid.svg);
	background-size: 100% 100%;
	border-radius: 0px;
    z-index: 0;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
}

.swiper-button-prev::after,
.swiper-button-next::after{
	color: var(--amarillo);
}

.swiper-pagination-bullet{
	background: var(--amarillo) !important;
} 

.avisos a:hover {
    background-size: 100% 2px;
    cursor: pointer;
}

.avisos a{
    color: var(--amarillo);
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size .3s;
}

footer div.avisos a {
	color: var(--amarillo);
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: background-size .3s;
}

footer div.avisos a:hover,
footer div.avisos a:focus {
    background-size: 100% 2px;
}

footer .mail-to,
footer .bi-facebook,
footer .bi-instagram,
footer .bi-youtube
{
	text-decoration: none;
	color: var(--blanco);
}

footer .mail-to:hover,
footer .bi-facebook:hover,
footer .bi-instagram:hover,
footer .bi-youtube:hover
{
	color: var(--amarillo);
}

footer .submit{
	background: var(--amarillo);
	color: var(--azul-oscuro);
	border: 1px solid var(--azul-oscuro);
}

footer .submit:hover{
	background: var(--azul-oscuro);
	color: var(--blanco);
	border: 1px solid var(--azul-oscuro);
	
}

.saber-mas{
	background: var(--amarillo);
	color: var(--azul-oscuro);
	border: 1px solid var(--azul-oscuro);
}

.saber-mas:hover{
	background: var(--azul-oscuro);
	color: var(--blanco);
	border: 1px solid var(--azul-oscuro);
	
}

.text-justify{
    text-align: justify !important;
}

.img-white{
    filter: hue-rotate(0) saturate(0) brightness(100);
}

.btn-amarillo{
	background: var(--amarillo);
	color: var(--blanco);
	padding-left: 20px;
	padding-right: 20px;
	margin-top: 15px;
	border-radius: 25px;
}

.btn-amarillo:hover{
	background: var(--azul-oscuro);
	color: var(--blanco);
}

.btn-rosa{
	background: var(--rosa);
	color: var(--blanco);
	padding-left: 20px;
	padding-right: 20px;
	margin-top: 15px;
	border-radius: 25px;
}

.btn-rosa:hover{
	background: var(--azul-oscuro);
	color: var(--blanco);
}

@media (max-width: 767px) {
    
    footer .submit{
		padding: 6px 20px 6px 20px !important;
	}

	.back-to-top {
	    border: 1px solid var(--azul-oscuro);
		right:  1%;
	}
	
    .swiper-slide img {
	    width: 40%;
		padding-right: 0;
		padding-bottom: 15px;
	}

	.swiper-slide .display-4{
		font-size: 20px;
	}

	.swiper-slide .h4{
		font-size: 15px;
	}

    footer div.text-end{    
        text-align: left !important;
    }

    .antes::before{
		width: 300px;
		left: calc(50% - 150px);
	}
}



.card-img-overlay {
    top: 0;
    bottom: auto; 
}

.filas {
    display: flex;
    flex-wrap: wrap;
}

.vendido {
    display: flex;
}

.filas {
  align-items: stretch;
}

.vendido .card-plan {
    border: 1px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.vendido .card-plan:hover, .vendido:nth-child(2) .card-plan:hover{
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 255, 0.324);
    border-color: var(--azul-oscuro);
}

.vendido:nth-child(2) .card-plan {
    transform: scale(1.02);
    border: 2px solid var(--azul);
    position: relative;
}

.vendido:nth-child(1) .card-plan::before {
    content: "LO MÁS NUEVO";
    position: absolute;
    top: -20px; 
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--azul);
    color: white;
    padding: 4px 8px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
    z-index: 9999 !important;
}

.vendido:nth-child(2) .card-plan::before {
    content: "LO MÁS NUEVO";
    position: absolute;
    top: -20px; 
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--azul);
    color: white;
    padding: 4px 8px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
    z-index: 9999 !important;
}

.btn-compra {
    border: 1px solid var(--rosa);
    border-radius: 15px;
    background-color: transparent;
    color: var(--rosa);
    cursor: pointer;
}

.btn-compra:hover {
    border: 1px solid var(--rosa);
    border-radius: 15px;
    background-color: var(--rosa);
    color: var(--blanco);
}

.filas .vendido:nth-child(1) .packet-card {
    border: 4px solid var(--amarillo);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.filas .vendido:nth-child(1) .packet-card::before {
    content: "Q-IK";
    position: absolute;
    top: -20px; 
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--amarillo);
    color: white;
    padding: 4px 8px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
}

.packet-card{
    border: 4px solid var(--amarillo);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card{
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover{
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 255, 0.324);
}

.packet-card::before {
    content: "Q-IK";
    position: absolute;
    top: -20px; 
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--amarillo);
    color: white;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 4px;
}

.radio-button{
    outline:none !important;
    background: #FFFFFF;
    appearance: none;
    width: 30px;
    height: 30px;
    border: 2px solid #D6D6DF;
    box-sizing: border-box;
    border-radius: 21px;
}

.radio-button:active, .radio-button:checked:active {
    box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0px 1px 3px rgba(0,0,0,0.1);
}

.radio-button:checked {
    border: none;
    width: 30px;
    height: 30px;
    background: var(--amarillo);
    border-radius: 21px;
}

.input-form, .input-form:focus, .input-form:active{
    min-width: 120px;
    width: 100%;
    height: 45px;
    border: 2px solid #D6D6DF !important;
    box-sizing: border-box;
    border-radius: 5px;
    font-family: sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 17px;
    outline: none;
}

.input-check {
    outline: none !important;
    background: #FFFFFF;
    appearance: none;
    width: 25px;
    height: 25px;
    border: 2px solid #D6D6DF;
    box-sizing: border-box;
    border-radius: 8px;
    cursor: pointer;
}

.input-check:active,
.input-check:checked:active {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px 1px 3px rgba(0, 0, 0, 0.1);
}

.input-check:checked {
    border: none;
    width: 25px;
    height: 25px;
    background: #09096B;
    border-radius: 8px;
}

ul {
    list-style-type: none;
}

.line {
    height: 95%; 
    width: 4px;
    background-color: var(--azul); 
}

.line-horizontal {
    height: 5px;
    width: 89%;
    background-color: var(--azul);
    margin: auto;
}

.custom-image {
    height: 100% !important; 
    object-fit: cover !important; 
}

.btn-azul {
    border: 1px solid var(--azul);
    color: var(--azul);
    background-color: var(--blanco);
}

.btn-azul:hover {
    color: var(--blanco);
    background-color: var(--azul);
}

.youtube-carousel {
    position: relative;
    width: 100%;
    height: 400px; /* altura del carrusel */
    overflow: hidden;
  }
  
  .youtube-carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
    white-space: nowrap;
  }
  
  .youtube-carousel-item {
    display: inline-block;
    width: 25%; /* ancho de cada video */
    height: 100%;
    margin: 0 10px;
  }
  
  .youtube-carousel-item iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
  
  .youtube-carousel-prev, .youtube-carousel-next {
    background-color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    font-size: 24px;
    cursor: pointer;
  }

  .youtube-carousel-prev {
    position: absolute;
    top: 50%;
    left: 0; /* botón prev en el borde derecho */
    transform: translateY(-50%);
  }
  
  .youtube-carousel-next {
    position: absolute;
    top: 50%;
    right: 0; /* botón next en el borde izquierdo */
    transform: translateY(-50%);
  }
  
  .youtube-carousel-prev:hover, .youtube-carousel-next:hover {
    background-color: #ccc;
  }

  .fondo-azul-wrapper {
    position: relative;
    display: inline-block;
}

.fondo-azul {
    display: block;
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.fondo-azul-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, #09086a, #00539c);
    opacity: 0.7;
    z-index: 1;
    pointer-events: none;
}

.card-text {
    position: relative;
}

.list-container {
    max-height: 150px; /* Altura inicial del contenedor cuando está colapsado */
    overflow: hidden;
    position: relative;
    transition: max-height 0.5s ease-out; /* Transición suave */
}

.list-container.expanded {
    max-height: 1000px; /* Altura suficiente para mostrar todo el contenido */
}

.list-container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px; /* Altura del degradado */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white);
}

#ver-mas-btn {
    display: block;
    margin: 0 auto;
}

.button-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 20px;
}

.btn-ver-mas {
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10px 20px;
    border: none;
    background-color: transparent;
    color: #ed495cac; /* Texto rosa */
    font-weight: bold;
    cursor: pointer;
    outline: none;
}

.list-container.expanded::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px; /* Altura del degradado */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
}

.table-comparison {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}
.table-comparison thead th {
    background-color: var(--azul-claro);
    color: white !important;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
}
.table-comparison tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}
.table-comparison tbody td {
    padding: 0.2rem;
    vertical-align: middle;
}
.highlight-cell {
    background-color: #e3f2fd !important;
    font-weight: bold;
}
.badge-feature {
    background-color: #00b894 !important;
    color: white;
    padding: 0.4rem 0.6rem;
    border-radius: 20px;
    font-size: 0.8rem;
}
.package-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff !important;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
}

.tag {
    background: rgba(182, 208, 236, 0.498);
    padding: 10px 25px;
    border-radius: 50px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    font-weight: 500;
}


/*--------------------- BOTONES FLOTANTES DE WHATSAPP E IR ARRIBA*/
.boton-flotante {
    position: fixed !important;
    z-index: 15 !important;
    right: 20px !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 24px !important;
    color: white !important;
    cursor: pointer !important;
    transition: all 0.3s ease-in-out !important;
    opacity: 1 !important;
    border: none !important;
}

#btn-ir-arriba {
    background-color: var(--azul);
    bottom: 80px;
    outline: none !important;
}

#btn-ir-arriba:hover {
    background-color: var(--azul);
}

#btn-whatsapp {
    background-color: #25D366 !important;
    bottom: 20px !important;
    outline: none !important;
}

.mostrar {
    opacity: 1;
    visibility: visible;
}

/*-------------------CONTACTO---------------------*/
/* Estilo del panel de opciones */
.whatsapp-panel {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 250px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 15px;
    display: none;
    flex-direction: column;
    z-index: 999 !important;
}

.whatsapp-panel.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.whatsapp-option {
    display: flex;
    align-items: center;
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.whatsapp-option:hover {
    background-color: #f5f5f5;
}

.whatsapp-option i {
    margin-right: 10px;
    font-size: 20px;
    color: #25D366;
}

.whatsapp-option span {
    font-size: 14px;
}

.qr-code {
    text-align: center;
    margin-top: 10px;
    padding: 10px;
    border-top: 1px solid #eee;
}

.qr-code img {
    max-width: 100%;
    height: auto;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilo para el fondo oscuro (opcional) */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2);
    display: none;
}

.overlay.show {
    display: block;
}