@charset "utf-8";
/* CSS Document */

/* arsenal-regular - latin */
@font-face {
    font-family: 'Arsenal';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/arsenal-v13-latin-regular.woff2') format('woff2'),
    url('../fonts/arsenal-v13-latin-regular.ttf') format('truetype');
}

/* arsenal-700 - latin */
@font-face {
    font-family: 'Arsenal';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/arsenal-v13-latin-700.woff2') format('woff2'),
    url('../fonts/arsenal-v13-latin-700.ttf') format('truetype');
}

@font-face {
    font-family: 'Segoe UI';
    src: url('../fonts/SegoeUI-Bold.woff2') format('woff2'),
    url('../fonts/SegoeUI-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Segoe UI';
    src: url('../fonts/SegoeUI.woff2') format('woff2'),
    url('../fonts/SegoeUI.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


::-moz-selection { /* Code for Firefox */
    color: #FFF;
    background: #BFA380;
}

::selection {
    color: #FFF;
    background: #BFA380;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", serif;
    font-weight: 400;
    overflow: auto;
    margin: 0;
    padding: 30px 30px 30px 160px;
    font-size: 18px;
    color: #252525;
    background-image: url("fondo.jpg");
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

#section {
    width: 947px;
    max-width: 100%;
    padding: 40px 60px 55px;
    background-color: rgba(255, 255, 255, .8);
    border: 3px solid #FFF;
    border-radius: 30px;
    font-size: 0;
}

.titulo1 {
    color: #252525;
    font-family: Arsenal;
    font-size: 45px;
    font-style: normal;
    font-weight: 400;
    margin-top: 30px;
}

.titulo2 {
    color: #252525;
    font-family: Arsenal;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 22px;
}

.texto {
    color: #252525;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    width: 620px;
    max-width: 100%;
}

#datos-localizacion {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-top: 40px;
}

.item-dato {
    font-size: 16px;
    text-decoration: none;
    color: #252525;
}

.item-dato-titulo {
    color: #BFA380;
    font-family: Arsenal;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
    margin-top: 12px;
    margin-bottom: 8px;
}

#logo {
    max-width: 100%;
    height: auto
}

@media only screen and (max-width: 1599px) {
    body {
        padding: 30px 15px;
        justify-content: center
    }
}

@media only screen and (max-width: 767px) {
    #section {
        padding: 30px 20px;
        border: none;
        text-align: center;
    }

    .titulo1 {
        font-size: 35px;
    }

    .titulo2 {
        font-size: 18px;
    }

    .texto{font-size: 16px}

    #datos-localizacion {
        flex-direction: column;
        gap: 30px;
        text-align: start;
    }

    .item-dato {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .item-dato-titulo{font-size: 20px; margin-top: 0; margin-bottom: 5px}
}