/* ------ SFONDO PAGINA (GRADIENT) ------ */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(180deg, #ffffff, #e8e8e8);
    color: #333;
}


/* ------ HEADER ------ */
header {
    background: #222;
    padding: 20px 0;
    color: white;
}

/* contenitore centrale */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* logo */
.logo {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
}

/* Menu */
.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.menu a:hover {
    text-decoration: underline;
}


/* ------ HERO (blocco grande iniziale) ------ */
.hero {
    background: white;
    padding: 80px 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin: 40px auto;
    width: 90%;
    max-width: 1100px;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    background: #222;
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.btn:hover {
    background: #444;
}


/* ------ SEZIONI SUCCESSIVE ------ */
.services,
.why {
    width: 90%;
    max-width: 1100px;
    margin: 40px auto;
}

.services h2,
.why h2 {
    margin-top: 0;
}

.services ul {
    margin-left: 20px;
}


/* ------ FOOTER ------ */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
/* ICONA WHATSAPP */
.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 999;
}

.whatsapp-icon img {
    width: 10%;
    height: 10%;
}