@import url('https://fonts.googleapis.com/css2?family=TASA+Orbiter:wght@400..800&display=swap');
@import url('https://db.onlinewebfonts.com/c/6c07dd0fb7b83dd322e29aadc5a93433?family=Times+NR+MT+Pro+Medium');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "TASA Explorer", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
html{
    scroll-behavior: smooth;
}
:root{
    --header-height: 4rem;
    --normal-font-size: .938rem;
    --font-regular: 400;
    --font-bold: 600;
    --z-tooltip: 10;
    --z-fixed: 100;
    --color-gradiente: linear-gradient(45deg, #1c0021, #240047, #1c3166);
    --color-primary: hsl(204, 4%, 22%);
    --color-primary-transparent: hsla(195, 4%, 22%, 0.363);
    --color-secundary: hsl(240, 18%, 14%);
    --color-terciario: hsl(223, 57%, 25%);
    --color-links: hsl(344, 73%, 64%);
    --color-details: hsl(175, 100%, 50%);
    --color-white: hsl(0, 0%, 100%);
}
@media screen and (width >= 1024px){
    :root{
        --normal-font-size: 1rem;
    }
}
body::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}
body::-webkit-scrollbar-track {
    background: var(--color-primary);
    height: 1px;
}  
body::-webkit-scrollbar-thumb {
    background-color: var(--color-details);
    border-radius: 20px;
    border: 1px solid var(--color-details);
}
body{
    /* background: var(--color-gradiente); */
    background-color: #000;
}
.body .img-carga{
    display: flex;
    flex-direction: column;
    background: linear-gradient(45deg, #1c0021, #240047, #1c3166);
    margin: auto;
    justify-content: center;
    align-items: center;
    height: 100vh;
    z-index: 50;
    width: 100%;
    position: absolute;
    /* animation: carga 10s infinite ease-in-out; */
}
.body .img-carga img{
    width: 200px;
    z-index: 50;
    animation: carga 5s infinite ease-in-out;
}
.hidden{
    overflow: hidden;
}
ul{
    list-style-type: none;
}
a{
    text-decoration: none;
    color: var(--color-links);
    font-family: "TASA Orbiter", sans-serif;
}
h1{
    font-family: "Oswald", sans-serif;
}
h3{
    font-family: "Oswald", sans-serif;
}
p{
    font-family: "TASA Orbiter", sans-serif;
    font-size: clamp(1rem, 1rem + 2vw, 1.25rem);
}
.container{
    max-width: 1120px;
    margin-inline: 1.5rem;
}
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-fixed);
    transition: 1s;
    background: transparent;
}
.logo-segcom{
    width: 150px;
    margin: auto;
}
.logo-segcom img{
    width: 100%;
}
.nav{
    height: var(--header-height);
}
.nav_burger,
.nav_close{
    color: var(--color-white);
}
.nav_data{
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.redes-nav{
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}
.redes-nav a{
    color: var(--color-white);
    font-size: 1.25rem;
    transition: 1s;
}
.redes-nav a:hover{
    color: var(--color-primary);
}
.nav_toggle{
    position: relative;
    width: 40px;
    height: 40px;
}
.nav_burger,
.nav_close{
    position: absolute;
    width: max-content;
    height: max-content;
    inset: 0;
    margin: auto;
    font-size: 1.25rem;
    cursor: pointer;
    transition: opacity .1s, transform .4s;
}
.nav_close{
    opacity: 0;
}
@media screen and (width <= 1118px){
    .nav_menu{
        position: absolute;
        left: 0;
        top: 3rem;
        width: 100%;
        height: calc(100vh - 4rem);
        overflow: auto;
        pointer-events: none;
        opacity: 0;
        transition: top .4s, opacity .3s;
    }
    .nav_menu::-webkit-scrollbar{
        width: 0;
    }
    .nav_list{
        background-color: var(--color-secundary);
        margin-top: 1rem;
    }
}
.nav_link{
    color: var(--color-white);
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color .3s;
}
.nav_link:hover{
    background-color: var(--color-primary);
}
.show-menu{
    opacity: 1;
    top: 3rem;
    pointer-events: initial;
}
.show-icon .nav_burger{
    opacity: 0;
    transform: rotate(90deg);
}
.show-icon .nav_close{
    opacity: 1;
    transform: rotate(90deg);
}
@media screen and (width <= 340px){
    .container{
        margin-inline: 1rem;
    }
    .nav_link{
        padding-inline: 1rem;
    }
}
.dropdown_item{
    cursor: pointer;
}
.dropdown_arrow {
  font-size: 1.25rem;
  font-weight: initial;
  transition: transform .4s;
}
.dropdown_link {
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  color: var(--color-white);
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  column-gap: .5rem;
  transition: background-color .3s;
}
.dropdown_link:hover{
    background-color: var(--color-secundary);
}
.dropdown_menu{
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease-out;
}
.dropdown_item:hover .dropdown_menu{
    max-height: 1000px;
    transition: max-height .4s ease-in;
}
.dropdown_item:hover .dropdown_arrow {
  transform: rotate(180deg);
}

/* inicio */

.inicio{
    width: 100%;
    overflow: hidden;
    height: 100vh;
}
.inicio-container{
    width: 100%;
    max-width: 650px;
    display: flex;
    flex-direction: column;
    position: absolute;
    z-index: 1;
    top: 8rem;
    left: .5rem;
    padding: 1rem 2rem;
}
.video-background{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.video-background video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.titulo-inicio{
    width: 100%;
}
.titulo-inicio h1{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    width: 100%;
    /* font-family: "Times NR MT Pro"; */
    font-weight: 600;
    margin: 3rem 0;
    color: var(--color-white);
    font-size: clamp(1.3rem, 1.3rem + 2vw, 3rem);
}
.titulo-inicio p{
    color: var(--color-white);
    text-align: justify;
    font-size: clamp(1rem, 1rem + 2vw, 1.25rem);
}
.imagen-container{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    justify-content: center;
}
.imagen-inicio{
    width: 33.3%;
    max-width: 200px;
    height: 400px;
}
.imagen-inicio img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.full{
    display: none;
}

/* slide marcas */

/* .marcas{
    width: 100%;
    display: flex;
    padding: 1.5rem 1.2rem;
    background: var(--color-white);
    justify-content: center;
    align-items: center;
}
.slide-marcas{
    display: flex;
    justify-content: start;
    align-items: center;
    overflow: hidden;
    margin: auto;
    animation: slide 50s infinite ease;
}
.slide-marcas img{
    width: 200px;
    margin: 0 1rem;
} */

.marcas{
    background-color: var(--color-white);
    /* margin: 1rem 0; */
}
.slider {
      position: relative;
      width: 100%;
      /* max-width: 1300px; */
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
      margin: auto;
}
.slider-track {
      display: flex;
      width: calc(600%); /* doble para duplicar imágenes */
      animation: scroll-mobile 20s linear infinite;  
}
.slide {
      min-width: 200px;
      transition: transform 0.5s ease;
      margin: 0 1rem;
}
.slide img {
      width: 100%;
      height: auto;
      display: block;
}
/* Animación infinita */
@keyframes scroll-mobile {
    0% { transform: translateX(0); }
    100% { transform: translateX(-350%); } /* mueve medio track (duplicado) */
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); } /* mueve medio track (duplicado) */
}
/* Pausa al pasar el mouse */
.slider:hover .slider-track {
    animation-play-state: paused;
}
/* Responsivo */
@media (max-width: 1200px) {
    .slider {
    max-width: 100%;
    border-radius: 0;
    }
}

/* contadores */

.contadores{
    padding: 3em 2em;
    background-color: var(--color-primary);
    color: white;
    text-align: center;
}
.contadores > div{
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4em 2em;
}
.contador{
    position: relative;
}
.contador h1{
    font-size: 3em;
    margin-bottom: 0.5em;
}
.contador h3{
    font-size: clamp(1rem, 1rem + 2vw, 1.25rem);
}
.contador:not(:last-child)::before{
    content: '';
    background-color: white;
    position: absolute;
    width: 2px;
    height: 3em;
    top: 50%;
    transform: translateY(-50%);
    right: -1em;
}
@media screen and (width < 900px) and (width > 501px){
    .contadores > div{
        grid-template-columns: 1fr 1fr;
    }
    .contador:not(:last-child)::before{
        display: none;
    }
}
@media screen and (width < 500px){
    .contadores > div{
        grid-template-columns: 1fr;
        row-gap: 5em;
    }
    .contador:not(:last-child)::before{
        width: 90%;
        height: 2px;
        top: initial;
        right: initial;
        bottom: -3em;
        left: 50%;
        transform: translateX(-50%);
    }
}


/* nosotros */

.nosotros{
    width: 100%;
    padding: 1.5rem;
    background: var(--color-secundary);
}
.titulo-nosotros{
    width: 100%;
    color: var(--color-white);
    margin: 3rem 0;
}
.titulo-nosotros h1{
    font-size: clamp(1.3rem, 1.3rem + 2vw, 2.75rem);
}
.nosotros-container{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}
.nosotros-container .nosotros-item{
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin: auto;
}
.nosotros-container .nosotros-item p{
    width: 100%;
    max-width: 600px;
    text-align: justify;
    color: var(--color-white);
    margin: auto;
}
.video-nosotros{
    width: 100%;
    max-width: 500px;
}



/* comunidades */

.comunidades{
    width: 100%;
    background: var(--color-primary);
}
.imagen-comunidades{
    width: 100%;
}
.imagen-comunidades img{
    width: 100%;
    object-fit: cover;
}
.comunidades-container{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    /* margin: 1rem auto; */
    align-items: center;
}
.titulo-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 1.2rem;
}
.titulo-container h1{
    color: var(--color-white);
    font-weight: var(--font-regular);
    padding: .5rem;
    width: 100%;
    font-size: clamp(1.3rem, 1.3rem + 2vw, 2.75rem);
}
.titulo-container p{
    color: var(--color-white);
    /* margin: .5rem 0; */
    text-align: justify;
}



/* calidad */
.calidad{
    width: 100%;
    background: var(--color-secundary);
    /* margin: 1rem 0; */
}
.calidad-container{
    /* margin: 2rem 0; */
    display: flex;
    flex-wrap: wrap;
}
.imagen-calidad{
    width: 100%;
}
.imagen-calidad img{
    width: 100%;
    object-fit: cover;
}
.titulo-calidad{
    width: 100%;
    margin: auto;
    padding: 1.5rem 1.2rem;
}
.titulo-calidad h1{
    font-weight: var(--font-regular);
    margin: 1rem 0;
    color: var(--color-white);
    padding: .5rem;
    font-size: clamp(1.3rem, 1.3rem + 2vw, 2.75rem);
}
.titulo-calidad p{
    color: var(--color-white);
    margin: 1rem 0;
    text-align: justify;
}
.titulo-calidad a{
    background-color: var(--color-terciario);
    color: var(--color-white);
    padding: .5rem;
    /* margin: 1rem 0; */
    display: flex;
    position: relative;
    z-index: 1;
    transition: 1s;
    overflow: hidden;
    border-radius: 0 10px 0 10px;
    width: 150px;
    text-align: center;
    justify-content: center;
    font-size: 1.25rem;
}
.titulo-calidad a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    transition: 1s;
    z-index: -1;
    background-color: var(--color-secundary);
}
.titulo-calidad a:hover::before{
    width: 100%;
}

/* soluciones */


/* radios soluciones */

.body-soluciones{
    background-color: var(--color-secundary);
}
.soluciones{
    width: 100%;
    overflow: hidden;
    height: 100vh;
}
.soluciones-container{
    width: 100%;
    max-width: 650px;
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    z-index: 1;
    top: 8rem;
    left: .5rem;
    padding: 1rem 2rem;
}
.video-background{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.video-background video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.titulo-soluciones{
    width: 100%;
}
.titulo-soluciones h1{
    display: flex;
    width: 100%;
    font-weight: 600;
    margin: 3rem 0;
    color: var(--color-white);
    font-size: clamp(1.3rem, 1.3rem + 2vw, 3rem);
}
.titulo-soluciones p{
    color: var(--color-white);
    /* text-align: justify; */
    font-size: clamp(1rem, 1rem + 2vw, 1.25rem);
}

/* Solucines drones */

.drones{
    width: 100%;
    height: 75vh;
    position: relative;
}
.video-drones{
    width: 100%;
    height: 100vh;
}
.video-drones video{
    width: 100%;

}
.titulo-soluciones-drones{
    position: absolute;
    top: 12rem;
    padding: 1.2rem 2.8rem;
    width: 100%;
    max-width: 650px;
}
.titulo-soluciones-drones h1{
    color: var(--color-white);
    font-size: clamp(1.3rem, 1.3rem + 2vw, 3rem);
    margin: 1.5rem 0;
}
.titulo-soluciones-drones p{
    color: var(--color-white);
    font-size: clamp(1rem, 1rem + 2vw, 1.25rem);
}

/* soluciones camaras */

.camaras{
    width: 100%;
    height: 75vh;
    position: relative;
}
.video-camaras{
    width: 100%;
}
.video-camaras video{
    width: 100%;
}
.titulo-soluciones-camaras{
    position: absolute;
    top: 12rem;
    padding: 1.2rem 2.8rem;
    width: 100%;
    max-width: 650px;
}
.titulo-soluciones-camaras h1{
    color: var(--color-white);
    font-size: clamp(1.3rem, 1.3rem + 2vw, 3rem);
    margin: 1.5rem 0;
}
.titulo-soluciones-camaras p{
    color: var(--color-white);
    font-size: clamp(1rem, 1rem + 2vw, 1.25rem);
}

/* soluciones estrobos */
.estrobos{
    width: 100%;
    height: 75vh;
    position: relative;
}
.video-soluciones-estrobos{
    width: 100%;
}
.video-soluciones-estrobos video{
    width: 100%;
}
.titulo-soluciones-estrobos{
    width: 100%;
    max-width: 650px;
    position: absolute;
    top: 12rem;
    padding: 1.2rem 2.8rem;
}
.titulo-soluciones-estrobos h1{
    color: var(--color-white);
    font-size: clamp(1.3rem, 1.3rem + 2vw, 3rem);
    margin: 1.5rem 0;
}
.titulo-soluciones-estrobos p{
    color: var(--color-white);
    font-size: clamp(1rem, 1rem + 2vw, 1.25rem);
}

/* soluciones pantallas led */
.pantallas{
    width: 100%;
    height: 75vh;
    position: relative;
    margin-bottom: 40vh;
}
.video-soluciones-pantallas{
    width: 100%;
}
.video-soluciones-pantallas video{
    width: 100%;
}
.titulo-soluciones-pantallas{
    width: 100%;
    max-width: 650px;
    position: absolute;
    top: 12rem;
    padding: 1.2rem 2.8rem;
}
.titulo-soluciones-pantallas h1{
    color: var(--color-white);
    font-size: clamp(1.3rem, 1.3rem + 2vw, 3rem);
    margin: 1.5rem 0;
}
.titulo-soluciones-pantallas p{
    color: var(--color-white);
    font-size: clamp(1rem, 1rem + 2vw, 1.25rem);
}

/* productos */

.productos{
    width: 100%;
}
.titulo-productos{
    width: 100%;
    display: flex;
    align-items: center;
    padding: 1.5rem;
    color: var(--color-details);
}
.titulo-productos h1{
    font-weight: var(--font-regular);
    font-size: 2rem;
    font-family: "Times NR MT Pro";
}
.producto-container{
    width: 100%;
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.imagen-producto{
    display: flex;
    width: 100%;
    max-width: 400px;
    margin: 1rem 0;
    background-color: var(--color-secundary);
    border: 2px solid var(--color-details);
}
.imagen-producto img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.publicidad-icom{
    width: 100%;
}
.publicidad-icom img{
    width: 100%;
}
.radios-fondo{
    position: relative;
}
.radios-fondo::before{
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url(./img/fondo\ radios.png);
    background-position: center;
    background-size: cover;
    z-index: -1;
    opacity: 1;
}
.publicidad-drones{
    width: 100%;
}
.publicidad-drones img{
    width: 100%;
}
.drones-fondo{
    position: relative;
}
.drones-fondo::before{
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    /* background-image: url(./img/fondo\ drones.png); */
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 1;
}
.publicidad-bodycam{
    width: 100%;
}
.publicidad-bodycam img{
    width: 100%;
}
.bodycam-fondo{
    position: relative;
}
.bodycam-fondo::before{
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url(./img/fondo\ bodycam.png);
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 1;
}
.publicidad-estrobos{
    width: 100%;
}
.publicidad-estrobos img{
    width: 100%;
}
.estrobos-fondo{
    position: relative;
}
.estrobos-fondo::before{
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url(./img/fondo\ estrobos.png);
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 1;
}
.publicidad-camaras{
    width: 100%;
}
.publicidad-camaras img{
    width: 100%;
}
.camaras-fondo{
    position: relative;
}
.camaras-fondo::before{
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url(./img/fondo\ camaras.png);
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 1;
}
.publicidad-pantalla{
    width: 100%;
}
.publicidad-pantalla img{
    width: 100%;
}
.pantalla-fondo{
    position: relative;
}
.pantalla-fondo::before{
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url(./img/fondo\ pantalla\ y\ monitor\ led.png);
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 1;
}

/* contacto */
.contacto{
    width: 100%;
    padding: 1.5rem 1.2rem;
    display: flex;
    flex-direction: column;
}
.publicidad-contacto{
    width: 100%;
}
.publicidad-contacto img{
    width: 100%;
}
.contacto .mapa{
    width: 100%;
}
.contacto .mapa iframe{
    width: 100%;
}
.contacto-container{
    width: 100%;
}
.detalles-contacto{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}
.detalles-contacto a{
    color: var(--color-white);
    margin: .5rem 0;
    display: flex;
    gap: 5px;
}
.detalles-contacto p{
    color: var(--color-white);
}
.datos{
    width: 100%;
    max-width: 500px;
}

/* fomrulario */
.formulario{
    width: 100%;
    max-width: 500px;
}
form{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 1rem;
}
.inputs{
    width: 100%;
}
input{
    width: 100%;
    height: 2rem;
    margin: .5rem 0;
    background: transparent;
    border-top: none;
    border-right: none;
    border-left: none;
    padding: 0 1rem;
    outline: none;
    border-bottom: 2px solid var(--color-terciario);
    color: var(--color-white);
    font-size: 1rem;
}
input::placeholder{
    color: var(--color-white);
}
.text-area{
    width: 100%;
}
textarea{
    width: 100%;
    height: 4rem;
    background: transparent;
    border-top: none;
    border-right: none;
    border-left: none;
    padding: 0 1rem;
    outline: none;
    border-bottom: 2px solid var(--color-terciario);
    color: var(--color-white);
    margin: 1rem 0;
    font-size: 1rem;
}
textarea::placeholder{
    color: var(--color-white);
}
.btn-enviar{
    width: 100%;
    height: 2.5rem;
    margin: 1rem 0;
    background-color: var(--color-terciario);
    color: var(--color-white);
    border: none;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    position: relative;
    z-index: 1;
    transition: 1s;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    overflow: hidden;
    border-radius: 0 20px 0 20px;
}
.btn-enviar::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    z-index: -1;
    transition: 1s;
    background-color: var(--color-secundary);
}
.btn-enviar:hover::before{
    width: 100%;
}

/* footer */
footer{
    background-image: url(./img/fondo\ footer.png);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 1.5rem 1.2rem;
    position: relative;
}
.logo-footer{
    width: 200px;
}
.logo-footer img{
    width: 100%;
}
.redes-footer{
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 1rem 0;
}
.redes-footer a{
    font-size: 1.5rem;
    color: var(--color-white);
}
.redes-footer a:hover{
    color: var(--color-details);
}
.aviso{
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}
.aviso a{
    font-size: 1.25rem;
    color: var(--color-white);
}
.aviso a:hover{
    color: var(--color-details);
}
.copy{
    width: 100%;
    display: flex;
    justify-content: center;
}
.copy p{
    color: var(--color-white);
}
.elaborado{
    width: 100%;
    margin: 1rem 0;
    display: flex;
    justify-content: center;
}
.elaborado a{
    color: var(--color-white);
}

/* botón contacto */
.btn-whats{
    position: fixed;
    width: 230px;
    height: 50px;
    line-height: 50px;
    bottom: 30px;
    right: 10px;
    color: #fff;
    background-color: #72EA5F;
    border-radius: 20px;
    text-align: center;
    font-size: 25px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
    z-index: 80;
    transition: 1s;
}
.btn-whats:hover{
    color: #72EA5F;
    background: var(--color-gradiente);
    transition: 1s;
}

@keyframes carga {
    0%{
        opacity: 0;
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}

@media screen and (width >= 420px){
    /* tipos de mercaso */
    
    .comunidades-container{
        display: flex;
        flex-wrap: wrap;
    }
    .imagen-comunidades{
        width: 50%;
    }
    .titulo-container{
        width: 50%;
    }
    .imagen-calidad{
        width: 50%;
    }
    .titulo-calidad{
        width: 50%;
    }
    .calidad-container{
        flex-direction: row-reverse;
    }
    .derecha{
        flex-direction: row-reverse;
    }
    .radios-fondo{
        background-attachment: fixed;
    }
    .drones-fondo{
        background-attachment: fixed;
    }
    .bodycam-fondo{
        background-attachment: fixed;
    }
    .estrobos-fondo{
        background-attachment: fixed;
    }
    .camaras-fondo{
        background-attachment: fixed;
    }
    .pantalla-fondo{
        background-attachment: fixed;
}
}
@media screen and (width >= 1118px){
    .container{
        margin-inline: auto;
    }
    .nav{
        height: calc(var(--header-height) + 1.5rem);
        display: flex;
        justify-content: space-between;
    }
    .nav_toggle {
        display: none;
    }
    .nav_list {
        height: 100%;
        display: flex;
        column-gap: 3rem;
    }
    .nav_link {
        height: 100%;
        padding: 0;
        justify-content: center;
        column-gap: .25rem;
        font-size: 1.2rem;
        transition: 1s;
    }
    .nav_link:hover {
        background-color: transparent;
        color: var(--color-primary);
    }
    .dropdown_item {
        position: relative;
        width: 100px;
    }
    .dropdown_menu{
        width: 170px;   
    }
    .dropdown__link {
        padding-inline: 1rem;
    }
    .redes-nav{
        margin: 0 1.5rem;
    }
    .redes-nav a{
        font-size: 1.5rem;
    }
    .slider-track{
        animation: scroll 20s linear infinite; 
    }
    .nosotros{
        background-attachment: fixed;
    }
    .comunidades{
        background-attachment: fixed;
    }
    .calidad{
        background-attachment: fixed;
    }
    .full{
        display: block;
    }
    .drones{
        height: 100vh;
    }
    .camaras{
        height: 100vh;
    }
    .estrobos{
        height: 100vh;
    }
    footer{
        display: flex;
        /* margin-top: 500px; */
        width: 100%;
    }
    .footer-container{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
}