*{
   
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* ANIMACIONES */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes wobble {
    0% {
        transform: translateX(0%);
    }
    15% {
        transform: translateX(-25px) rotate(-5deg);
    }
    30% {
        transform: translateX(20px) rotate(3deg);
    }
    45% {
        transform: translateX(-15px) rotate(-3deg);
    }
    60% {
        transform: translateX(10px) rotate(2deg);
    }
    75% {
        transform: translateX(-5px) rotate(-1deg);
    }
    100% {
        transform: translateX(0%);
    }
}
body{
    font-family: Arial, Helvetica, sans-serif;
}
/* BOTONES REDES SOCIALES */
.redes{
    position:fixed;
    bottom: 15%;
    right: 2%; 
    z-index: 1000;  
}
.redes .wsp:hover{
    animation: pulse 0.5s infinite;
}
.redes .llamar:hover{
    animation: pulse 0.5s infinite;
}

/* HEADER */
header{
    background-color: #FEFEFE;
}
.container{
    width: 100%;
    height: auto;
    margin: 0;
    padding: 2% 3%;
    display: flex;
    align-items: center;
    justify-content: space-between; 
}
header .container .logo{
    width: 30%;
    height: auto;
    display: flex;
    justify-content: center;
}
header .container .logo img{
    width: 50%;
    height: auto;
    max-height: 140px;
}
header .container .navegador{
    width: 70%;
    height: auto;
}
header .container .navegador nav{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-around;
}
.navegador nav a{
    text-decoration: none;
    color: #070F5C;
    justify-content: space-between;
    font-size: 20px;
    padding: 1%;
    width: 20%;
}
.navegador nav a strong{
    text-shadow: 4px 4px 8px rgba(65, 70, 237, 0.5);
}
.navegador nav a strong:hover{
    padding: 9%;
    border-radius: 2rem;
    background-color: #0D179E;
    color: #FEFEFE;
    text-shadow: 4px 4px 8px rgba(65, 70, 237, 0.5);
}
/* PRINCIPAL */
#principal{
    background-image: url(/img/mejores-profesionales-en-cada-mantenimiento-reparacion-medellin.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;   
}
    /* Formulario */
.titulos {
    margin-top: 9%;
    margin-bottom: 9%;
    margin-right: 20%;
    width: 50%;
    padding: 2%;
    border-radius: 8px;
    text-align: center;
}
.titulos h1{
    font-size: 50px;
    color: #FEFEFE;

}
.titulos h2{
    font-size: 40px;
    color: #fff;
    margin-bottom: 2%;
}
form input, textarea{
    width: 100%;
    margin-bottom: 15px;
    padding: 13px;
    font-size: 20px;
    border: 1px solid #ccc;
    border-radius: 4px; 
}
form textarea{
    resize: none;
    width: 100%;
    height: 200px;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;  
}
form input[type='submit']{
    background-color: #08105D;
    width: 100%;
    height: 50px;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 25px;
    color: #FFEE00;
}
/* Texto img ppal */
.text{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
}
.imagen-mantenimiento{
    width: 30%;
    height: auto;
}
.imagen-mantenimiento img {
    width: 100%;
    height: auto;
    margin-top: -100%;
    margin-left: 40%;
}
.texto-mantenimiento{
    width: 80%;
}
.texto-mantenimiento p {
    font-size: 28px;
    color: #FFEE00;
    background-color: #08105D;
    padding: 6%;
    border-radius: 2rem 0% 0% 2rem;
    width: 100%;
}
/* Multiservicios */
.tit-multis{
    font-size: 30px;
    text-align: center;
    margin-top: 1%;
}
.multiservicios{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2%;
}
.multiservicios .image{
    width: 40%;
    height: auto;
}
.multiservicios .image img{
    width: 100%;
    height: auto;
    padding-bottom: 7%;
}
.multiservicios .info{
    width: 60%;
    height: auto;

}

.multiservicios .info p{
    width: 100%;
    padding: 3%;
    font-size: 22px;
    margin-right: 80px;   
}
/* Mantenimiento - reparacion e instalacion */
.mantenimiento{
    background-color: #2B3F4C;
}
.mantenimiento h2{

    text-align: center;
    color: #fff;
    padding: 2%;
    font-size: 35px;
}
.mantenimiento .enlace{
    text-align: center;
    padding: 1%;
}
.mantenimiento .enlace a{
    color: #FEFEFE;
    text-decoration: none;
    font-size: 20px;
    padding: 1%;
    border: 1px solid #FEFEFE; 
    border-radius: 1rem; 
}
/* Efecto */
.mantenimiento .enlace a:hover{
    background-color: #0D179E;
    color: #FEFEFE;
}
.mantenimiento .reparacion{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 2%;
}
.reparacion .imagen-reparacion{
    width: 50%;
    height: auto;
    align-items: center;
    justify-content: center;
    display: flex;
}
.reparacion .imagen-reparacion img{
    width: 75%;
    height: auto;
    padding-top: 2%;
    max-height: 90vh;

}
.reparacion .text-reparacion{
    width: 50%;
 
}
.reparacion .text-reparacion h2{
    font-size: 24px;

    color: #0D179E;
    
}
.reparacion .text-reparacion p{
    width: 100%;
    color: #FEFEFE;
    font-size: 17px;
    padding: 2%;
}
/* CARDS */
.cards{
    background-color: #2B3F4C;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card{
    padding: 3%;
}
.card h3{
    color: #0D179E;
    margin-bottom: 4%;
    font-size: 22px;
}
.card p{
    color: #FEFEFE;
    font-size: 18px;
}
.desc{
    text-align: center;
    padding: 3%;
}
.desc h2{
    color: #000;
    font-size: 35px;
    margin-bottom: 2%;
}
.desc .parrafo p{
    font-size: 25px;
    color: #A8A8A8;
}
/* LOGOS */
.img-marcas{
    display: flex;
    justify-content: center;
    margin-bottom: 2%;
    width: 90%;
}
.img-marcas:hover{
    animation: wobble 1s infinite;
}
.img-marcas .marcas{
    display: grid;
    grid-template-columns: repeat(6, 1fr); 
    gap: 10px; 
    justify-items: center; 
    margin-left: 10%;
}
.img-marcas .marcas img{
        max-width: 100%; 
        height: auto;    
        display: block;  
}
/* SERVICIOS */
.publicidad{
    background-color: #00468C;
    padding: 2%;
}
.publicidad h2{
    color: #FEFEFE;
    text-align: center;
    font-size: 35px;
}
/* FOOTER */
footer{
    background-color: #2B3F4C;
    color: #FEFEFE;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1%;
}
footer .img-footer {
    width: 31%; 
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1%;
}
footer .img-footer img{
    width: 60%;
    height: auto;
    max-height: 110px;

}
footer .info-footer{
    width: 23%;
    margin-left: 4%;
}
footer .info-footer h3{
    font-size: 25px;
    padding: 2%;
}
footer .info-footer p{
    font-size: 15px;
    padding: 2%;
}
footer .info-footer ul{
    padding: 2%;
}
footer .info-footer ul li{
    font-size: 15px;
}
/* COPY */
.copy{
    background-color: #2B3F4C;  
    color: #FEFEFE;
    padding: 1%;
    text-align: center;

}
/* MEDIA QUERY */
@media (min-width: 300px) and (max-width:798px){

    /* HEADER */
    header .container{
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 1%;
    }

    header .container .navegador{
        width: 80%;
    }
    header .container .logo{
        width: 100%;
    }
    header .container .logo img{
        width: 50%;
    }
    .navegador nav{
        
    }
    .navegador nav a{
    width: 100%;
    padding: 2%;
    }
    .navegador nav a strong{
        width: 100%;
        font-size: 16px;
    }

    /* PRINCIPAL */
    .text{
        display: none;
    }
    form{
        width: 100%;
        height: auto;
    }
    .titulos{
        padding: 0;
        margin-left: 60px; 
        width: 100%;
        height: auto;
    }
    .titulos form input{
        width: 100%;
    }
    .titulos h1{
        font-size: 25px;
    }
    .titulos h2{
        font-size: 15px;
    }
    /* Multiservicios */
    .tit-multis{
        padding: 1%;
        font-size: 20px;
    }
    .multiservicios{
        flex-direction: column;
    }
    .multiservicios .image{
        padding: 1%;
        width: 100%;
        height: auto;
    }
    .multiservicios .image img{
        border-radius: 2rem;
    }
    .multiservicios .info {
        width: 100%;
        height: auto;
    }
    .multiservicios .info p{
        font-size: 14px;
    }
    /* Mantenimiento reparacion e instalacion */
    .mantenimiento{
        width: 100%;
        height: auto;
    }
    .mantenimiento h2{
        font-size: 20px;
    }
    .mantenimiento .enlace a{
        font-size: 12px;
    }
    .mantenimiento .enlace{
        margin-bottom: 10px;
    }
    .mantenimiento .reparacion{
        flex-direction: column;
    }
    .mantenimiento .reparacion .imagen-reparacion{
        width: 100%;
        height: auto;
        margin-right: 15%;
    }
    .mantenimiento .reparacion .imagen-reparacion img{
        border-radius: 6px;
    }
    .mantenimiento .reparacion .text-reparacion{
        width: 100%;
        margin: 0;
    }
    .mantenimiento .reparacion .text-reparacion p{
        font-size: 14px;
        padding: 2%;
    }
    /* CARDS */
    .cards{
        flex-direction: column;
        width: 100%;
        height: auto;
        padding: 2%;
    }
    .cards .card h3{
        font-size: 22px;
    }
    .cards .card p{
        font-size: 15px;
    }
    /* Descripcion */
    .desc h2{
        font-size: 20px;
    }
    .desc .parrafo p{
        font-size: 14px;
    }
    /* MARCAS */
    .img-marcas{
        width: 100%;
        height: auto;
        padding: 6%;
    }
    /* ANUNCIO */
    .publicidad h2{
        font-size: 14px;
    }

    /* FOOTER */
    footer{
        flex-direction: column;
        padding: 1%;
    }
    footer .img-footer{
        width: 40%;
    }
    footer .info-footer{
        width: 95%;
        height: auto;
        margin-right: 4%;
    }
    footer .info-footer h3{
        font-size: 18px;
    }
    footer .info-footer p{
        font-size: 13px;
    }
    footer .info-footer ul li{
        font-size: 13px;
        margin-left: 4%;
    }
    /* COPY */
    .copy{
        font-size: 15px;
        text-align: center;
    }
    /* REDES SOCIALES */
    .redes{
        bottom: 4%;
        right: -5%;
        width: 25%;
    }
    .redes .wsp a img{
        width: 70%;
    }
    .redes .llamar a img{
        width: 70%;
    }
}
@media (min-width: 798px) and (max-width:1080px){
    /* HEADER */
    header .container .navegador{
        width: 80%;
    }
    header .container .logo{
        width: 20%;
    }
    header .container .logo img{
        width: 90%;
    }
    .navegador nav a{
        margin: 1%;
        margin-left: 1%;
        padding: 0;
    }
    .navegador nav a strong{
        width: 100%;
        font-size: 25px;
    }
    /* TEXTO */
    .text{
        display: none;
    }
    form{
        width: 100%;
        height: auto;
    }
    .titulos{
        padding: 1%;
        margin-left: 100px; 
        width: 100%;
        height: auto;
    }
    .titulos form input{
        width: 100%;
        height: auto;
    }
    .titulos h1{
        font-size: 50px;
    }
    .titulos h2{
        font-size: 35px;
    }
    /* MULTISERVICIOS */
    .tit-multis{
        padding: 1%;
        font-size: 35px;
    }
    .multiservicios{
        flex-direction: column;
    }
    .multiservicios .image{
        padding: 1%;
        width: 100%;
        height: auto;
    }
    .multiservicios .image img{
        border-radius: 2rem;
    }
    .multiservicios .info {
        width: 100%;
        height: auto;
    }
    .multiservicios .info p{
        font-size: 25px;
    }
    /* MANTENIMIENTO - REPARACION */
    .mantenimiento{
        width: 100%;
        height: auto;
    }
    .mantenimiento h2{
        font-size: 35px;
    }
    .mantenimiento .enlace a{
        font-size: 20px;
    }
    .mantenimiento .enlace{
        margin-bottom: 10px;
    }
    .mantenimiento .reparacion{
        flex-direction: column;
    }
    .mantenimiento .reparacion .imagen-reparacion{
        width: 100%;
        height: auto;
        margin-right: 15%;
    }
    .mantenimiento .reparacion .imagen-reparacion img{
        border-radius: 15px;
    }
    .mantenimiento .reparacion .text-reparacion{
        width: 100%;
        margin: 0;
    }
    .mantenimiento .reparacion .text-reparacion h2{
        margin: 0;
    }
    .mantenimiento .reparacion .text-reparacion p{
        font-size: 22px;
        padding: 1%;
    }
    /* CARDS */
    .cards{
        width: 100%;
        height: auto;
        padding: 2%;
    }
    .cards .card h3{
        font-size: 24px;
    }
    .cards .card p{
        font-size: 20px;
    }
    /* DESC */
    .desc h2{
        font-size: 35px;
    }
    .desc .parrafo p{
        font-size: 25px;
    }
    /* MARCAS */
    .img-marcas{
        width: 100%;
        height: auto;
        padding: 6%;
    }
    /* ANUNCIO */
    .publicidad h2{
        font-size: 19px;
    }
    /* FOOTER */
    footer .img-footer{
        display: none;
    }
    footer .info-footer h3{
        font-size: 25px;
    }
    /* COPY */
    .copy{
        text-align: center;
        font-size: 20px;
    }

}
@media (min-width: 1080px) and (max-width:1280px){
    .reparacion .text-reparacion{
        margin-top: 0%;
    }      
}
@media (min-width:1280px) and (max-width: 1585px){
    .reparacion .text-reparacion{
        margin-top: 0;
    }
}