@import url('https://fonts.googleapis.com/css2?family=TASA+Explorer:wght@400..800&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;
    --color-primary: hsl(258, 48%, 15%);
    --color-secundary: hsl(255, 48%, 26%);
    --color-terciario: hsl(255, 49%, 37%);
    --color-link: hsl(180, 58%, 48%);
    --color-details: hsl(339, 69%, 48%);
    --color-white: hsl(0, 0%, 97%);
    --color-marketing: hsl(225, 97%, 69%);
    --color-tarjetas: hsl(78, 100%, 56%);
    --color-contacto: hsl(157, 64%, 60%);
    --color-submenu: hsl(61, 83%, 67%);
    --color-btn: hsl(120, 58%, 48%);
    --font-regular: 400;
    --font-bold: 600;
    --z-tooltip: 10;
    --z-fixed: 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-color: var(--color-primary);
}
h1{
    color: var(--color-link);
    font-size: clamp(1.3rem, 1.3rem + 2vw, 2.75rem);
}
h2{
    color: var(--color-white);
    font-size: clamp(.8rem, .8rem + 2vw, 2rem);
}
p{
    color: var(--color-white);
    font-size: clamp(1rem, 1rem + 2vw, 2rem);
}
ul{
    list-style-type: none;
}
a{
    text-decoration: none;
}
.container{
    max-width: 1120px;
    margin-inline: 1.5rem;
}
.header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-fixed);
}
.nav{
    height: var(--header-height);
}
.nav_logo,
.nav_burger,
.nav_close{
    color: var(--color-white);
}
.nav_logo_fast img{
    width: 60px;
}
.nav_logo img{
    width: 180px;
}
.nav_data{
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav_logo{
    display: inline-flex;
    align-items: center;
    column-gap: .25rem;
}
.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-details);
}
.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);
}
.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-terciario);
  display: flex;
  align-items: center;
  column-gap: .5rem;
  transition: background-color .3s;
}
.dropdown_link:hover{
    background-color: var(--color-details);
}
.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);
}

/* Home */
/* Inicio */

.inicio{
    background-image: url(./img/fondo\ inicio\ prueba.png);
    background-size: cover;
    background-position: left;
    width: 100%;
    height: 100vh;
    padding: 1.5rem 1.2rem;
    display: flex;
    animation: inicio 3s ease;
}
.inicio-container{
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 550px;
    padding: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}
.titulo-inicio{
    width: 100%;
    max-width: 550px;
}
.titulo-inicio h1{
    color: var(--color-link);
    font-size: clamp(1.3rem, 1.3rem + 2vw, 2.75rem);
    margin-bottom: 20px;
}
.titulo-inicio p{
    color: var(--color-white);
    font-size: clamp(.5rem, .5rem + 2vw, 1.5rem);
    margin-bottom: 20px;
    text-align: justify;
    display: flex;
}
.detalles-imagen{
    width: 250px;
    max-width: 300px;
}
.detalles-imagen img{
    width: 100%;
}

/* Inicio complemento */

.inicio-complemento{
    width: 100%;
    height: 100vh;
    padding: 1.5rem 1.2rem;
    /* background-image: url(./img/fondo\ mobile\ desarrollo\ web.png); */
    background: var(--color-secundary);
    background-size: cover;
    background-position: left;
}
.complemento-container{
    width: 100%;
    /* padding: 1rem; */
}
.detalles-complemento{
    width: 100%;
    max-width: 90%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: auto;
}
.texto-complemento{
    width: 100%;
    max-width: 600px;
    margin-top: 30%;
}
.texto-complemento h1{
    margin-bottom: 1rem;
}
.texto-complemento p{
    text-align: justify;
    font-size: clamp(.75rem, .75rem + 2vw, 1.5rem);
}
.texto-complemento .btn{
    text-align: center;
    position: relative;
    display: flex;
    width: 220px;
    height: 55px;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--color-link);
    padding: 1rem;
    border-radius: 10px;
    color: var(--color-link);
    margin: 1rem 0;
    font-size: 1.25rem;
    transition: 1s;
    overflow: hidden;
    background: transparent;
    letter-spacing: 1px;
    z-index: 1;
}
.texto-complemento .btn:hover{
    background-color: var(--color-link);
    color: var(--color-primary);
}
.texto-complemento .btn::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--color-link);
    z-index: -1;
    transition: .5s;
}
.texto-complemento .btn:hover::before{
    width: 100%;
}
.imagen-complemento{
    width: 100%;
}
.imagen-complemento img{
    width: 100%;
    margin: 2rem 0 1rem 0;
    object-fit: cover;
}


/* inicio marketing */

.inicio-marketing{
    background: var(--color-primary);
    width: 100%;
    height: 100vh;
    padding: 1.5rem 1.2rem;
}
.marketing-container{
    width: 100%;
}
.detalles-marketing{
    width: 100%;
    max-width: 90%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: auto;
}
.texto-marketing{
    width: 100%;
    max-width: 600px;
    margin-top: 30%;
}
.texto-marketing h1{
    margin-bottom: 1rem;
}
.texto-marketing p{
    text-align: justify;
    font-size: clamp(.75rem, .75rem + 2vw, 1.5rem);
}
.texto-marketing .btn{
    text-align: center;
    position: relative;
    display: flex;
    width: 220px;
    height: 55px;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--color-link);
    padding: 1rem;
    border-radius: 10px;
    color: var(--color-link);
    margin: 1rem 0;
    font-size: 1.25rem;
    transition: 1s;
    overflow: hidden;
    background: transparent;
    letter-spacing: 1px;
    z-index: 1;
}
.texto-marketing .btn:hover{
    background-color: var(--color-link);
    color: var(--color-primary);
}
.texto-marketing .btn::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--color-link);
    z-index: -1;
    transition: .5s;
}
.texto-marketing .btn:hover::before{
    width: 100%;
}


/* tarjetas digitales inicio */

.tarjetas-inicio{
    /* background-image: url(./img/fondo\ mobile\ tarjetas.png); */
    background: var(--color-secundary);
    width: 100%;
    height: 100vh;
    padding: 1.5rem 1.2rem;
}
.tarjetas-container{
    width: 100%;
}
.detalles-tarjetas{
    width: 100%;
    max-width: 90%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: auto;
}
.texto-tarjetas{
    width: 100%;
    max-width: 600px;
    margin-top: 30%;
}
.texto-tarjetas h1{
    margin-bottom: 1rem;
}
.texto-tarjetas p{
    text-align: justify;
    font-size: clamp(.75rem, .75rem + 2vw, 1.5rem);
}
.texto-tarjetas .btn{
    text-align: center;
    position: relative;
    display: flex;
    width: 220px;
    height: 55px;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--color-link);
    padding: 1rem;
    border-radius: 10px;
    color: var(--color-link);
    margin: 1rem 0;
    font-size: 1.25rem;
    transition: 1s;
    overflow: hidden;
    background: transparent;
    letter-spacing: 1px;
    z-index: 1;
}
.texto-tarjetas .btn:hover{
    background-color: var(--color-link);
    color: var(--color-primary);
}
.texto-tarjetas .btn::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--color-link);
    z-index: -1;
    transition: .5s;
}
.texto-tarjetas .btn:hover::before{
    width: 100%;
}


/* nosotros */

.nosotros{
    width: 100%;
    padding: 1.5rem 1.2rem;
}
.nosotros-container{
    width: 100%;
}
.titulo-nosotros{
    width: 100%;
    padding: 1rem;
}
.nosotros-detalles{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 2rem;
}
.nosotros-item{
    width: 100%;
    max-width: 250px;
    padding: .5rem;
    color: var(--color-white);
    border: 2px solid var(--color-white);
    margin: 1rem 0;
    border-radius: 10px;
}
.nosotros-item .icon i{
    font-size: clamp(4rem, 4rem + 2vw, 4rem);
}
.texto-nosotros{
    margin: 1rem;
}
.texto-nosotros span{
    color: var(--color-link);
}
.nostros-contacto{
    width: 100%;
}
.titulo-contacto-nosotros{
    width: 100%;
    padding: 1rem;
}
.telefono{
    width: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: 1.5rem auto;
}
.telefono a{
    color: var(--color-white);
    font-size: clamp(.75rem, .75rem + 2vw, 1.5rem);
}
.correo{
    width: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: 1.5rem auto;
}
.correo a{
    color: var(--color-white);
    font-size: clamp(.75rem, .75rem + 2vw, 1.5rem);
}

/* Sección Desarrollo Web */
.desarrollo-web{
    background-image: url(./img/fondo\ mobile\ solucion\ desarrollo\ web.png);
    background-position: left;
    background-size: cover;
    width: 100%;
    height: 100vh;
    padding: 1.5rem 1.2rem;
    display: flex;
    animation: desarrolloweb 2s ease;
}
.desarrollo-web-container{
    width: 100%;
}
.detalles-desarrollo-web{
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 25%;
    align-items: center;
    justify-content: center;
}
.imagen-desarrollo{
    width: 250px;
    max-width: 300px;
}
.imagen-desarrollo img{
    width: 100%;
}
.titulo-seccion-desarrollo{
    width: 100%;
}
.titulo-seccion-desarrollo h1{
    color: var(--color-details);
    font-size: clamp(1.3rem, 1.3rem + 2vw, 2.75rem);
    margin-bottom: 20px;
}
.titulo-seccion-desarrollo p{
    color: var(--color-white);
    font-size: clamp(.5rem, .5rem + 2vw, 1.5rem);
    margin-bottom: 20px;
    text-align: justify;
    display: flex;
}

/* Tipos de sitio */
.tipos-sitios{
    width: 100%;
    padding: 1.5rem 1.2rem;

}
.tipos-sitio-container{
    width: 100%;
}
.detalles-tipos-sitio{
    width: 100%;
    max-width: 90%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 25%;
    align-items: center;
    justify-content: center;
    margin: 3rem auto;
}
.izquierda{
    background-image: url(./img/fondo\ tipos\ de\ sitio.png);
    background-position: left;
    background-size: cover;
}
.derecha{
    background-image: url(./img/fondo\ sitio\ derecha.png);
    background-position: right;
    background-size: cover;
}
.titulo-tipos-sitios{
    width: 100%;
    max-width: 650px;  
}
.titulo-tipos-sitios h1{
    color: var(--color-details);
    font-size: clamp(1.3rem, 1.3rem + 2vw, 2.75rem);
    margin-bottom: 20px;
}
.titulo-tipos-sitios p{
    color: var(--color-white);
    font-size: clamp(.5rem, .5rem + 2vw, 1.5rem);
    margin-bottom: 20px;
    text-align: justify;
    display: flex;
}
.video-tipos-sitio{
    width: 300px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.video-tipos-sitio video{
    width: 100%;
}
.video-tipos-sitio p{
    margin: 1rem 0;
}
.video-tipos-sitio span{
    color: var(--color-link);
}

/* Seccion marketing digital */

.marketing-section{
    background-image: url(./img/fondo\ mobile\ seccion\ marketing.png);
    background-position: right;
    background-size: cover;
    width: 100%;
    height: 100vh;
    padding: 1.5rem 1.2rem;
    display: flex;
    animation: seccionmarketing 2s ease;
}
.marketing-section-container{
    width: 100%;
}
.detalles-marketing-section{
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 80px;
    align-items: center;
    justify-content: center;
}
.titulo-marketing-section{
    width: 100%;
}
.titulo-marketing-section h1{
    color: var(--color-marketing);
    font-size: clamp(1.3rem, 1.3rem + 2vw, 2.75rem);
    margin-bottom: 20px;
}
.titulo-marketing-section p{
    color: var(--color-white);
    font-size: clamp(.5rem, .5rem + 2vw, 1.5rem);
    margin-bottom: 20px;
    text-align: justify;
    display: flex;
}
.imagen-marketing-section{
    width: 250px;
    margin: auto;
    margin: 1rem;
}
.imagen-marketing-section img{
    width: 100%;
}

/* Detalles seccion marketing */

.servicios-marketing{
    background-image: url(./img/fondo\ seccion\ servicios\ marketing.png);
    background-position: center;
    background-size: cover;
    width: 100%;
    padding: 1.5rem 1.2rem;
}
.servicios-marketing-container{
    width: 100%;
    margin: 0 auto;
    max-width: 90%;
    display: flex;
    flex-wrap: wrap;
}
.detalles-servicios-marketing{
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 25%;
    align-items: center;
    justify-content: center;
    margin: 3rem auto;
}
.titulo-servicios-marketing{
    width: 100%;
}
.titulo-servicios-marketing h1{
    color: var(--color-marketing);
    font-size: clamp(1.3rem, 1.3rem + 2vw, 2rem);
    margin-bottom: 20px;
}
.titulo-servicios-marketing p{
    color: var(--color-white);
    font-size: clamp(.5rem, .5rem + 2vw, 1.5rem);
    margin-bottom: 20px;
    text-align: justify;
    display: flex;
}
.imagen-servicios-marketing{
    width: 100%;
}
.imagen-servicios-marketing img{
    width: 100%;
    object-fit: cover;
}
.imagen-servicios-marketing p{
    text-align: center;
    margin: 1rem 0;
}
.imagen-servicios-marketing span{
    color: var(--color-marketing);
}

/* Seccion tarjetas de presentación */

.tarjetas-section{
    background-image: url(./img/fondo\ mobile\ section\ tarjetas.png);
    background-position: left;
    background-size: cover;
    width: 100%;
    height: 100vh;
    padding: 1.5rem 1.2rem;
    display: flex;
    animation: secciontarjetas 2s ease;
}
.tarjetas-section-container{
    width: 100%;
}
.detalles-tarjetas-section{
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 25%;
    align-items: center;
    justify-content: center;
    position: relative;
}
.titulo-tarjeta-section{
    width: 100%;
}
.titulo-tarjeta-section h1{
    color: var(--color-tarjetas);
    font-size: clamp(1.3rem, 1.3rem + 2vw, 2.75rem);
    margin-bottom: 20px;
}
.titulo-tarjeta-section p{
    color: var(--color-white);
    font-size: clamp(.5rem, .5rem + 2vw, 1.5rem);
    margin-bottom: 20px;
    text-align: justify;
    display: flex;
}
.imagen-tarjetas-section{
    width: 250px;
    margin: auto;
}
.imagen-tarjetas-section img{
    width: 100%;
    object-fit: cover;
}

/* Detalles tarjetas de presentación */

.opciones-tarjetas{
    background-image: url(./img/fondo\ pasos\ tarjetas.png);
    background-position: center;
    background-size: cover;
    width: 100%;
    padding: 1.5rem 1.2rem;
}
.titulo-opciones-tarjetas{
    width: 100%;
    padding: 1rem;
}
.titulo-opciones-tarjetas h1{
    font-size: clamp(.5rem, .5rem + 2vw, 2rem);
    color: var(--color-tarjetas);
}
.opciones-tarjetas-container{
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    margin: 1rem auto;
}
.item{
    width: 350px;
    max-width: 400px;
    margin: 1rem 0;
}
.imagen-item{
    width: 100%;
}
.imagen-item img{
    width: 100%;
    object-fit: cover;
}
.item p{
    text-align: justify;
    font-size: clamp(.5rem, .5rem + 2vw, 1.5rem);
}

/* Clientes */

.clientes{
    background-image: url(./img/fondo\ mobile\ clientes.png);
    background-position: right;
    background-size: cover;
    width: 100%;
    height: 100vh;
    padding: 1.5rem 1.2rem;
    animation: inicioclientes 2s ease;
}
.clientes-container{
    width: 100%;
    max-width: 600px;
    margin-top: 25%;
}
.titulo-clientes{
    width: 100%;
    padding: 1rem;
}
.titulo-clientes h1{
    font-size: clamp(1.5rem, 1.5rem + 2vw, 2.75rem);
    color: var(--color-tarjetas);
}
.titulo-clientes p{
    color: var(--color-white);
    font-size: clamp(.75rem, .75rem + 2vw, 1.5rem);
    margin-bottom: 20px;
    text-align: justify;
    display: flex;
}
.imagen-clientes{
    width: 200px;
    justify-content: center;
    align-items: center;
    margin: auto;
}
.imagen-clientes img{
    width: 100%;
    object-fit: cover;
}
.item-clientes{
    width: 100%;
    padding: 1.5rem 1.2rem;
}
.item-clientes-container{
    width: 100%;
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
    align-items: center;
}
.logo-cliente{
    width: 100px;
    background-color: var(--color-white);
    border-radius: 50%;
    border: 2px solid var(--color-details);
}
.logo-cliente img{
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    margin: auto;
    display: flex;
}

/* contacto */
.contacto{
    background-image: url(./img/fondo\ contacto\ formulario.png);
    background-position: center;
    background-size: cover;
    width: 100%;
    padding: 1.5rem 1.2rem;
    animation: contacto 2s ease;
}
.titulo-contacto{
    width: 100%;
    max-width: 700px;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
    margin: 80px auto 0 auto;
}
.titulo-contacto h1{
    font-size: clamp(1.25rem, 1.25rem + 2vw, 2.5rem);
    color: var(--color-link);
}
.contacto-container{
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-wrap: wrap;
    margin: 1.5rem auto;
    justify-content: space-around;
    align-items: center;
    margin: auto;
}
.form{
    width: 100%;
    max-width: 450px;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 2rem 0;
}
.inputs-container{
    width: 100%;
    display: flex;
    flex-direction: column;
}
input{
    width: 100%;
    max-width: 400px;
    font-size: 1rem;
    padding: 1rem;
    border-radius: 20px;
    margin: 1rem 0;
    outline: none;
    border: none;
    text-align: center;
}
textarea{
    width: 100%;
    max-width: 400px;
    font-size: 1rem;
    padding: 1rem;
    border-radius: 20px;
    margin: 1rem 0;
    outline: none;
    border: none;
    text-align: center;
}
.btn-enviar{
    width: 200px;
    font-size: 1.25rem;
    margin: auto;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    z-index: 1;
    transition: 1s;
    position: relative;
    cursor: pointer;
    padding: .5rem 0;
    border-radius: 20px;
    background-color: var(--color-terciario);
    border: none;
    color: var(--color-white);
    overflow: hidden;
}
.btn-enviar::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    z-index: -1;
    transition: 1s;
    overflow: hidden;
    background-color: var(--color-btn);
}
.btn-enviar:hover::before{
    width: 100%;
}
.datos-contacto{
    width: 100%;
    max-width: 450px;
}
.datos-contacto p{
    font-size: clamp(.8rem, .8rem + 2vw, 1.5rem);
    margin: 1rem 0;
}
.datos-contacto a{
    color: var(--color-white);
}




/* footer */

footer{
    background-image: url(./img/fondo\ footer.png);
    background-position: center;
    background-size: cover;
    width: 100%;
    display: flex;
    padding: 1.5rem 1.2rem;
    flex-direction: column;
    background-color: var(--color-primary);
}
.footer-container{
    width: 100%;
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.footer-container .logo{
    width: 200px;
    max-width: 400px;
}
.footer-container .logo img{
    width: 100%;
    object-fit: cover;
}
.footer-container .aviso{
    /* width: 100%; */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem;
}
.footer-container .aviso a{
    text-decoration: none;
    font-size: clamp(.75rem, .75rem + 2vw, 1.25rem);
    color: var(--color-white);
    transition: 1s;
}
.footer-container .aviso a:hover{
    color: var(--color-link);
}
.footer-container .redes{
    /* width: 100%; */
    color: var(--color-white);
    justify-content: center;
    align-items: center;
    display: flex;
    gap: 1rem;
    margin: 1rem;
}
.footer-container .redes a{
    font-size: clamp(1.5rem, 1.5rem + 2vw, 2rem);
    color: var(--color-white);
    transition: 1s;
}
.footer-container .redes a:hover{
    color: var(--color-link);
}
.footer-container .ciudad{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1rem;
}
.footer-container .ciudad p{
    font-size: clamp(.75rem, .75rem + 2vw, 1.25rem);    
}
footer .copy{
    width: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    font-size: clamp(.75rem, .75rem + 2vw, 1.25rem);  
}

/* Botón Whatsapp flotante */

.boton-contacto{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    position: fixed;
    width: 390px;
    height: 70px;
    bottom: 50px;
    right: -335px;
    color: var(--color-white);
    background-color: var(--color-details);
    border-radius: 10px;
    text-align: center;
    font-size: 22px;
    z-index: 15;
    transition: 1s;
}
.boton-contacto:hover{
    right: 0;
}
.boton-contacto h3{
    font-weight: 400;
    border-radius: 20px;
    padding: 1rem;
    display: flex;
    gap: 20px;
}
.boton-contacto .botones{
    width: 160px;
    position: relative;
    padding: .5rem;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.boton-contacto a{
    color: var(--color-white);
    font-size: 2rem;
    
}
.boton-contacto a:hover{
    color: var(--color-primary);
}

@media screen and (width <= 340px){
    .container{
        margin-inline: 1rem;
    }
    .nav_link{
        padding-inline: 1rem;
    }
}
@media screen and (width >= 450px){
    .inicio{
        background-image: url(./img/fondo\ inicio\ prueba.png);
        background-size: cover;
        background-position: center;
    }
    .inicio-container{
        margin-left: 40px;
        margin-top: 80px;
    }
    .detalles-imagen{
        display: none;
    }
    .inicio-complemento{
        background-image: url(./img/fondo\ desarrollo\ web.png);
    }
    .imagen-complemento{
        display: none;
    }
    .inicio-marketing{
        background-image: url(./img/fondo\ marketing\ digital\ inicio.png);
        background-position: center;
        background-size: cover;
    }
    .tarjetas-inicio{
        background-image: url(./img/fondo\ tarjeta\ digital.png);
        background-position: center;
        background-size: cover;
    }
    .desarrollo-web{
        background-image: url(./img/fondo\ solucion\ desarrollo\ web.png);
        background-size: cover;
        background-position: center;
    }
    .imagen-desarrollo{
        display: none;
    }
    .detalles-tipos-sitio{
        gap: 2rem;
    }
    .derecha{
        flex-direction: row-reverse;
    }
    .marketing-section{
        background-image: url(./img/fondo\ seccion\ marketing\ digital.png);
        background-position: center;
        background-size: cover;
    }
    .imagen-marketing-section{
        display: none;
    }
    .tarjetas-section{
        background-image: url(./img/fondo\ section\ tarjeta.png);
        background-position: left;
        background-size: cover;
    }
    .imagen-tarjetas-section{
        display: none;
    }
    .opciones-tarjetas-container{
        justify-content: center;
        gap: 3rem;
        display: flex;
    }
    .clientes{
        background-image: url(./img/fondo\ clientes.png);
    }
    .imagen-clientes{
        display: none;
    }
    .imagen-contacto{
        display: none;
    }
}
@media screen and (width <= 899px) and (orientation: landscape) {
    .titulo-inicio{
        width: 380px;
        margin-left: -15%;
        margin-top: -10%;
    }
    .titulo-inicio h1{
        font-size: 30px;
    }
    .titulo-inicio p{
        font-size: 18px;
    }
    .texto-complemento{
        width: 350px;
        margin-top: 2%;
        margin-right: -55%;
    }
    .texto-complemento h1{
        font-size: 25px;
    }
    .texto-complemento p{
        font-size: 16px;
    }
    .texto-complemento a{
        width: 150px;
        padding: .5rem;
    }
    .texto-marketing{
        width: 350px;
        margin-top: 2%;
        margin-left: -50%;
    }
    .texto-marketing h1{
        font-size: 25px;
    }
    .texto-marketing p{
        font-size: 16px;
    }
    .texto-marketing a{
        width: 150px;
        padding: .5rem;
    }
    .texto-tarjetas{
        width: 350px;
        margin-top: 2%;
        margin-right: -55%;
    }
    .texto-tarjetas h1{
        font-size: 25px;
    }
    .texto-tarjetas p{
        font-size: 16px;
    }
    .texto-tarjetas a{
        width: 150px;
        padding: .5rem;
    }
    .titulo-seccion-desarrollo{
        width: 380px;
        margin-right: -80%;
        margin-top: -15%;
    }
    .titulo-seccion-desarrollo h1{
        font-size: 30px;
    }
    .titulo-seccion-desarrollo p{
        font-size: 18px;
    }
    .titulo-marketing-section{
        width: 380px;
        margin-left: -30%;
        margin-top: 0px;
    }
    .titulo-marketing-section h1{
        font-size: 30px;
    }
    .titulo-marketing-section p{
        font-size: 18px;
    }
    .titulo-tarjeta-section{
        width: 420px;
        margin-right: -25%;
        margin-top: -12%;
    }
    .titulo-tarjeta-section h1{
        font-size: 25px;
    }
    .titulo-tarjeta-section p{
        font-size: 15px;
    }
    .clientes-container{
        width: 420px;
        margin-left: 5%;
        margin-top: 10%;
    }
    .titulo-clientes h1{
        font-size: 25px;
    }
    .titulo-clientes p{
        font-size: 18px;
    }
    .titulo-contacto{
        width: 500px;
        margin-top: 12%;
        margin-left: 40%;
    }

}
@media screen and (width >= 900px){
    .texto-complemento{
        width: 400px;
        margin-top: 5%;
        margin-right: -60%;
    }
    .texto-marketing{
        margin-top: 10%;
        margin-left: -60%;
        width: 400px;
    }
    .texto-tarjetas{
        width: 400px;
        margin-top: 5%;
        margin-right: -60%;
    }
    .titulo-nosotros{
        margin-left: 5%;
        width: 90%;
    }
    .nosotros-detalles{
        width: 75%;
        margin: auto;
    }
    .titulo-seccion-desarrollo{
        margin-right: -140%;
        margin-top: -10%;
        width: 500px;
        max-width: 600px;
    }
    .titulo-marketing-section{
        margin-left: 5%;
        margin-top: -15%;
    }
    .titulo-tarjeta-section{
        margin-right: -70%;
        margin-top: -15%;
        width: 600px;
    }
    .clientes-container{
        margin-top: 18%;
    }
}
@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: initial;
        column-gap: .25rem;
        font-size: 1.2rem;
        transition: 1s;
    }
    .nav_link:hover {
        background-color: transparent;
        color: var(--color-details);
    }
    .pin{
        color: var(--color-details);
        
    }
    .dropdown_item{
        position: relative;
    }
    .dropdown_menu {
        max-height: initial;
        overflow: initial;
        position: absolute;
        left: 0;
        top: 5.5rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s, top .3s;
        width: 200%;
    }
    .dropdown_link {
        padding-inline: 1rem 3.5rem;
    }
    .dropdown_link {
        padding-inline: 1rem;
    }
    /* Show dropdown menu */
    .dropdown_item:hover .dropdown_menu {
        opacity: 1;
        top: 5.5rem;
        pointer-events: initial;
        transition: top .3s;
    }
    .inicio{
        background-size: cover;
        background-position: center;
    }
    .inicio-container{
        margin-left: 100px;
    }
    .inicio-complemento{
        background-size: cover;
        background-position: center;
    }
    .texto-complemento{
        margin-top: 8%;
        margin-right: -50%;
        width: 600px;
    }
    .inicio-marketing{
        background-position: center;
        background-size: cover;
    }
    .texto-marketing{
        margin-top: 10%;
        margin-left: -50%;
        width: 600px;
    }
    .texto-tarjetas{
        margin-top: 8%;
        margin-right: -50%;
        width: 600px;
    }
    .tarjetas-inicio{
        background-position: center;
        background-size: cover;
    }
    .nosotros-detalles{
        width: 100%;
        margin: auto;
    }
    .titulo-contacto-nosotros{
        margin-left: 5%;
        width: 90%;
    }
    .desarrollo-web{
        background-position: center;
        background-size: cover;
    }
    .detalles-desarrollo-web{
        margin-left: 45%;
        margin-top: 13%;
    }
    .titulo-seccion-desarrollo{
        margin-right: 0;
        margin-top: 0;
        width: 100%;
    }
    .detalles-tipos-sitio{
        gap: 4rem;
    }
    .detalles-marketing-section{
        margin-top: 20%;
        margin-left: 25px;
    }
    .titulo-marketing-section{
        width: 100%;
    }
    .detalles-tarjetas-section{
        margin-left: 40%;
        margin-top: 15%;
    }
    .titulo-tarjeta-section{
        margin-right: 0px;
        margin-top: 0px;
        width: 100%;
    }
    .titulo-opciones-tarjetas{
        width: 90%;
        padding: 1rem;
        margin: 0 auto;
    }
    .clientes-container{
        margin-top: 15%;
        margin-left: 10%;
    }
    .logo-cliente{
        width: 200px;
    }
    .footer-container{
        justify-content: space-between;
    }
}





