@import url('https://fonts.googleapis.com/css2?family=Righteous&family=Work+Sans:wght@100;300;400;600;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300;600&display=swap');

*{
    box-sizing: border-box;
    font-family: 'Work Sans';
    margin: 0;
    padding: 0;
}

html{
    scroll-behavior: smooth;
}

/*======================= Boton WSP =======================*/
.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
	font-size:30px;
	box-shadow: 2px 2px 3px #999;
	z-index:100;
}

.float:hover{
	text-decoration: none;
	color: #FFF;
	background-color:#1ab152;
	animation: shake 1s;
	animation-iteration-count: infinite;
}

.my-float{
	margin-top:16px;
}

.pulse{
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px #00000057; rgba: (0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}

/*======================= Seccion M E N U =======================*/
header{
    background-image: linear-gradient(
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.7)),
        url(img/Casa-panelsip.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.navbar{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px 0 10px;
    z-index: 2;
}

.navbar.active{
    background-color: #302B27;
    padding: 15px;
    height: 80px;                          /* antes 70px*/
    z-index: 2;
}

.logo{
    width: 90px;                           /* antes 70px*/
}

.menu{
    display: flex;
}

.menu li{
    list-style: none;
    margin: 0 10px;
}

.menu li a{
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.5s ease;
}

.menu li a:hover{
    padding: 5px 10px;
    background: #F2A516;
    color: white;
    border-radius: 15px;
}

.menu-btn{
    color: white;
    font-size: 20px;
    display: none;
}

.header-content{
    margin-left: 85px;
}

.header-content h1{
    font-size: 70px;
    font-weight: 600;
    line-height: 80px;
    color: white;
    text-transform: uppercase;
}

.header-content h2{
    font-size: 25px;
    font-weight: 300;
    color: #F2A516;
    padding-bottom: 5px
}

.header-content p{
    font-size: 16px;
    color: white;
    margin-bottom: 30px;
}

.btn-1{
    display: inline-block;
    padding: 11px 20px;
    border-radius: 5px;
    background-color: #F2A516;
    color: white;
    text-transform: uppercase;
    text-decoration: none;
}

.btn-1:hover{
    background-color: #d28c0b;
}

/*======================= Seccion N O S O T R O S =======================*/
.nosotros{
    overflow: hidden;
    height: 100vh;
}

.contenedor_nosotros h1{
    color: black;
    font-size: 35px;
    font-weight: 400;
    text-align: center;
    margin-top: 150px;
}

.contenedor_nosotros .linea{
    width: 150px;
    height: 2px;
    background: #F2A516;
    margin: 5px auto;
}

.contenedor{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: 65px auto;
}

.escrito{
    flex: 1;
    width: 600px;
    margin: 0px 25px;
}

.escrito p{
    font-size: 15px;
    line-height: 1.5;
    color: #302B27;
}

.imagen{
    display: flex;
    justify-content: center;
    flex: 1;
    margin: auto;
}

.imagen img{
    width: 450px;
    height: auto;
    border-radius: 10px;
}

/* =======================Seccion S E R V I C I O S======================= */
.servicios{
    overflow: hidden;
    height: 100vh;
}

.titulo_servicios h1{
    color: black;
    text-align: center;
    font-size: 35px;
    font-weight: 400;
    margin-top: 100px;
}

.titulo_servicios .linea{
    width: 70px;
    height: 2px;
    background: #F2A516;
    margin: 5px auto;
}

.servicio{
    width: 85%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 75px auto;
    text-align: center;
}

.tarjetas{
    width: 100%;
    height: 370px;
    margin: 0px 20px;
    padding: 20px 20px;
    border-radius: 10px;
    border: solid 1px #302B27;
}

.tarjetas img{
    width: 40px;
    margin-bottom: 15px;
}

.tarjetas h2{
    font-size: 19px;
    font-weight: 600;
    color: black;
}

.tarjetas .linea{
    width: 310px;
    height: 0.1px;
    background: #F2A516;
    margin: 5px auto;
    margin-bottom: 20px;
}

.tarjetas p{
    text-align: left;
    font-size: 16px;
    line-height: 1.3;
    color: #302B27;
}

/* =======================Seccion C O N T A C T O =======================*/
.formulario{
    height: 110vh;
    overflow: hidden;
}

.titulo_form h1{
    color: black;
    text-align: center;
    font-size: 35px;
    font-weight: 400;
    margin-top: 80px;
}

.titulo_form .linea{
    width: 100px;
    height: 2px;
    background: #F2A516;
    margin: 5px auto;
}

.contenedor_form{
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

form{
    width: 550px;
}

form input, textarea{
    width: 100%;
    margin-bottom: 20px;
    padding: 7px;
    font-size: 16px;
    border: solid 1px #F2A516;
}

form textarea{
    min-height: 150px;
    max-height: 250px;
    min-width: 100%;
    max-width: 100%;
}

.boton{
    background: #F2A516;
    color: white;
    padding: 12px;
    border-radius: 7px;
}

.boton:hover{
    cursor: pointer;
    background: #d28c0b;
}

.datos{
    display: flex;
    height: 50%;
    flex-direction: column;
    justify-content: space-evenly;
}

.datos i{
    font-size: 25px;
    margin-right: 15px;
}

/* MODIFIC */
.datos a{
    text-decoration: none;
    font-size: 15px;
    color: #302B27;
    letter-spacing: 3px;
}
.datos a:hover{
    color: #F2A516;
}

/* =======================F O O T E R =======================*/
footer{
    background-color: #302B27;
    padding: 80px 10px;
}

.contenedor_footer{
    max-width: 1200px;
    margin: 0 auto;
}

.footer_row{
    display: flex;
    flex-wrap: wrap;
}

.footer_atajos{
    width: 25%;
    padding: 0 15px;
}

.footer_atajos h3{
    font-size: 20px;
    color: white;
    font-weight: 400;
}

.footer_atajos .linea{
    width: 50px;
    height: 1px;
    background: #F2A516;
    margin: 4px 0 25px 0;
}

.footer_atajos ul, li{
    list-style: none;
}

.footer_atajos a{
    font-size: 16px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.56);
    display: block;
    margin-bottom: 15px;
    transition: all .3s ease;
}

.footer_atajos a:hover{
    color: white;
    padding-left: 6px;
}

.redes li{
    margin: 0;
    padding: 0;
}

.redes ul{
    display: flex;
    flex-wrap: wrap;
}

.redes i{
    color: white;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    border: 1px solid white;
    border-radius: 100%;
    width: 35px;
    height: 35px;
    line-height: 35px;
    margin: 0 6px;
    font-size: 20px;
    transition: .3s;
}

/* =======================C O L O R E S   R E D E S   S O C I A L E S =======================*/
.redes i:hover{
    transform: translate(0, -10%);
    box-shadow: 0 0 8px white;
    transition: .5s;
}

.redes li:nth-child(1) i:hover{
    background: #d6249f;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}

.redes li:nth-child(2) i:hover{
    background-color: #2372a3;
}

.redes li:nth-child(3) i:hover{
    background: #25D366;
}

/* ======================= G A L E R I A ======================= */
.galeria{
    overflow: hidden;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.4)), url(img/galeria/LOGO_PANELPROJECT-01.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.titulo_galeria h1{
    color: white;
    font-size: 40px;
    font-weight: 400;
    text-align: center;
    margin-top: 130px;
}

.titulo_galeria .linea{
    width: 100px;
    height: 2px;
    background: #F2A516;
    margin: 5px auto;
}

.img_galeria{
    width: 80%;
    margin: 50px auto 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.img_galeria img{
    width: 100%;
    height: 160px;
    cursor: pointer;
    transition: 1s;
    outline: 1px solid #F2A516;
    object-fit: cover;
    border-radius: 5px;
}

.img_galeria img:hover{
    transform: scale(1.1);
}

.full_img{
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.9);
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99;
}

.full_img img{
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
}

.full_img i{
    color: white;
    font-size: 32px;
    margin: 20px;
    cursor: pointer;
}

.full_img span{
    color: white;
    position: absolute;
    top: 5%;
    right: 5%;
    font-size: 30px;
    cursor: pointer;
}

/* ======================= R E S P O N S I V E 1024======================= */
@media screen and (max-width: 480px){
    /* ======================= M E N U ======================= */
    .logo{
        height: 50px;
        width: 50px;
    }

    header{
        width: 100%;
    }

    .header-content{
        margin-left: 22px;
    }

    .header-content h2{
        font-size: 19px;
    }

    .header-content h1{
        font-size: 40px;
        line-height: 55px;
    }

    .header-content p{
        font-size: 11px;
    }

    .btn-1{
        padding: 7px 10px;
    }

    .menu-btn{
        display: block;
    }

    .menu{
        position: absolute;
        top: 0;
        left: 0;
        width: 300px;
        height: 102vh;
        background: #302B27;
        opacity: 0.9;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
        transform: translateX(-100%);
    }

    .menu li{
        margin: 15px 0;
    }

    .menu.active{
        transform: translateX(0);
    }

    .navbar{
        width: 100%;
    }

    .navbar.active{
        height: 65px;
    }
    
    /* ======================= N O S O T R O S ======================= */
    .nosotros{
        width: 100%;
        height: 90vh;
    }

    .contenedor_nosotros{
        margin-top: 75px;
    }

    .contenedor_nosotros h1{
        font-size: 27px;
        margin-top: 0;
    }

    .contenedor{
        display: flex;
        flex-direction: column;
        align-items: center;
        width: auto;
        margin: 0;
    }

    .escrito{
        width: 90%;
        margin: 25px;
    }

    .imagen img{
        width: 325px;
    }

    /* ======================= S E R V I C I O S ======================= */
    .servicios{
        width: 100%;
        height: auto;
    }

    .titulo_servicios{
        margin-top: 70px;
    }

    .titulo_servicios h1{
        font-size: 27px;
        margin-top: 0;
    }

    .servicio{
        width: 90%;
        flex-direction: column;
    }

    .tarjetas{
        margin-bottom: 30px;
    }

    .texto{
        margin: 0;
    }

    .texto p{
        margin-bottom: 10px;
        padding: 0;
    }

    /* ======================= C O N T A C T O ======================= */
    .formulario{
        width: 100%;
        /* height: 100vh; */
    }

    .titulo_form h1{
        font-size: 27px;
        margin: 0;
    }

    .contenedor_form{
        flex-direction: column;
        height: 100vh;
    }

    form{
        width: 90%;
        margin-top: 50px;
    }

    /* ======================= F O O T E R ======================= */
    footer{
        width: 100%;
    }

    .footer_atajos{
        width: 50%;
        margin-bottom: 30px;
    }
}