@import url('https://fonts.googleapis.com/css2?family=Signika+Negative:wght@300;400;600;700&display=swap');

body {
    width: 100%;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --blue: #2800ff;
    --orange: #fc4d0f;
}

/* --- GENERAL --- */
body {
    font-family: "Roboto", sans-serif;
    font-size: 25px;
    color: #000000;
}

body main {
    background-color: #ffffff;
}

.padreCondiciones{


        max-width: 1500px;
        margin: 0 auto;
        align-items: center;
        width: 95%;
}
header{
    background-image: linear-gradient(to right, #fac80d 0%, #e9d96f 51%, #fac80d 100%);
    margin-bottom: 50px;
}

header nav {
    padding: 30px;
    text-align: center;
}



header img {
    text-align: center;
}

.contenidoComunicaciones{
    margin: 30px;
}

.contenidoComunicaciones h1{
    margin: 30px auto;
}

/* --- FOOTER --- */
footer {
    background-color: var(--blue);
    margin-top: 100px;
}

footer .contenedorFooter {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px 8px;
    color: #ffffff;
    width: 95%;
    margin: auto;
    max-width: 1500px;
}

footer .telefono a {
    font-weight: 900;
    color: #ffffff;
    text-decoration: none;
}

footer .telefono a:hover {
    text-decoration: underline;
}


@media screen and (max-width: 620px) {

    body footer .contenedorFooter {
        flex-direction: column;
    }

    body footer .contenedorFooter .telefono {
        margin-top: 30px;
    }
}