*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    display: flex;
    justify-content: center;
    padding: 20px;
    overflow-x: auto;
}

.contenedor{
    width: 550px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
}
.logo{
    display:flex;
    align-items:flex-start;
    gap:30px;
    margin-bottom:20px;
}

.logo img{
    width:170px;
    margin-left: 80px;
}

.logo h3{
    margin-top:25px;
    font-size:18px;
    font-weight:normal;
    color:#555;
}

table{

    width:100%;
    border-collapse:collapse;
}

td,th{

    border:1px solid #bcbcbc;
    padding:10px;
    font-size:15px;
}

.titulo{

    background:#ececec;
}

.titulo th{

    font-weight:bold;
}

.centro{

    text-align:center;
}

td:first-child{

    width:55%;
}

td:last-child{

    width:45%;
    text-align:center;
}

.footer{

    text-align:center;
    margin-top:20px;
    font-size:14px;
}

.footer a{

    text-decoration:none;
    color:#003cb3;
}

.footer a:hover{

    text-decoration:underline;
}



.copyright{
    color: #808080; /* Gris */
    font-size: 12px;
}