* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
/*
body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
}*/
body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eef2f7, #d9e4f5);
}

.container {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
}
.card {
    background: #ffffff;
    max-width: 500px;
    width: 100%;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: none;
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-3px);
}
/*
.card {
    background: #ffffff;
    max-width: 500px;
    width: 100%;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #eaeaea;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: #555;
}*/
.logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    
    display: flex;
    align-items: center;
    justify-content: center;
}

/*.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* mantiene proporzioni 
}
*/
.logo img {
    max-width: 400px; /* regola dimensione */
    height: auto;
    display: block;
    margin: 0 auto;
}
.title-red {
    color: #d60000;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.title-redd {
    color: #d60000;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.info {
    color: #222;
    font-size: 16px;
    line-height: 1.6;
}
/*
@media (max-width: 480px) {
    .card {
        padding: 30px 20px;
    }

    .title-red {
        font-size: 20px;
    }

    .info {
        font-size: 15px;
    }
}*/
@media (max-width: 480px) {
    .card {
        padding: 25px 15px;
        border-radius: 15px;
    }

    .logo {
        width: 90px;
        height: 90px;
    }

    .title-red {
        font-size: 18px;
    }

    .info {
        font-size: 14px;
    }
	.logo img {
        max-width: 242px;
    }
}