/* ========================================
   CONSORCIO TRANSITO PALMIRA
   PAGINA DE MANTENIMIENTO
======================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{

    --amarillo:#FFC107;
    --amarillo-hover:#E6A800;

    --azul:#0A1F5C;

    --gris-menu:#C9C9C9;

    --gris-claro:#F5F5F5;

    --texto:#222222;

    --blanco:#FFFFFF;

}

body{

    font-family:'Poppins',sans-serif;

    min-height:100vh;

    background:var(--gris-claro);

    display:flex;

    justify-content:center;

    align-items:center;

    position:relative;

    overflow-y:auto;
    overflow-x:hidden;   

}

/* FRANJA SUPERIOR COMO EL MENU */

.background{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:180px;

    background:var(--gris-menu);

}
/* TARJETA PRINCIPAL */

.card{

    position:relative;

    width:950px;

    max-width:95%;

    background:white;

    border-radius:12px;

    padding:60px;

    text-align:center;

    box-shadow:
    0 10px 40px rgba(0,0,0,.15);

    border-top:8px solid var(--amarillo);

    z-index:10;

}

/* LOGO */

.logo{

    width:320px;

    max-width:100%;

    margin-bottom:25px;

}

/* ICONO */

.gear{

    font-size:70px;

    color:var(--azul);

    margin-bottom:20px;

}

.gear i{

    animation:girar 10s linear infinite;

}

@keyframes girar{

    100%{
        transform:rotate(360deg);
    }

}

/* TITULOS */

h1{

    font-size:52px;

    color:var(--azul);

    margin-bottom:20px;

    font-weight:700;

}

h2{

    font-size:28px;

    color:var(--texto);

    font-weight:500;

    margin-bottom:30px;

}

/* TEXTO */

p{

    font-size:19px;

    line-height:1.9;

    color:#555;

    margin-bottom:15px;

}

/* BOTON */

.boton{

    display:inline-block;

    margin-top:25px;

    background:var(--amarillo);

    color:var(--texto);

    text-decoration:none;

    font-weight:600;

    padding:18px 45px;

    border-radius:5px;

    transition:.3s;

}

.boton:hover{

    background:var(--amarillo-hover);

    transform:translateY(-3px);

}

/* CONTACTO */

.contacto{

    margin-top:40px;

    font-size:18px;

    color:#444;

    line-height:2.2;

}

.contacto i{

    width:30px;

    color:var(--azul);

}

/* REDES */

.social{

    margin-top:35px;

}

.social a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:55px;

    height:55px;

    margin:0 8px;

    background:var(--azul);

    color:white;

    border-radius:50%;

    text-decoration:none;

    transition:.3s;

    font-size:22px;

}

.social a:hover{

    background:var(--amarillo);

    color:var(--azul);

    transform:translateY(-4px);

}

/* FOOTER */

.footer{

    margin-top:35px;

    padding-top:20px;

    border-top:1px solid #ddd;

    color:#777;

    font-size:14px;

}

/* RESPONSIVE */

@media(max-width:768px){

    .card{

        padding:35px;

    }

    .logo{

        width:240px;

    }

    h1{

        font-size:34px;

    }

    h2{

        font-size:22px;

    }

    p{

        font-size:16px;

    }

    .contacto{

        font-size:16px;

    }

}
