Home

<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VirgilioFitness | Abbigliamento Fitness Uomo e Donna</title>

<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap" rel="stylesheet">

<style>
:root {
    --primary: #6E9CE4;
    --dark: #1e1e1e;
    --light: #f5f7fb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: var(--light);
    color: var(--dark);
}

header {
    background: white;
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

nav a {
    margin-left: 25px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: var(--primary);
}

.hero {
    padding: 100px 8%;
    background: linear-gradient(135deg, #6E9CE4 0%, #8fb2f0 100%);
    color: white;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

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

.btn {
    display: inline-block;
    padding: 15px 30px;
    background: white;
    color: var(--primary);
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background: #e6ecfa;
}

.section {
    padding: 80px 8%;
    text-align: center;
}

.section h2 {
    font-size: 32px;
    margin-bottom: 50px;
}

.cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    width: 300px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
}

.card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.card p {
    font-size: 14px;
    margin-bottom: 20px;
}

.card a {
    text-decoration: none;
    color: white;
    background: var(--primary);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
}

.cta {
    background: var(--primary);
    color: white;
    padding: 70px 8%;
}

.cta h2 {
    margin-bottom: 20px;
}

footer {
    background: white;
    padding: 30px;
    text-align: center;
    font-size: 14px;
    color: #777;
}
</style>
</head>

<body>

<header>
    <div class="logo">VirgilioFitness</div>
    <nav>
        <a href="#">Uomo</a>
        <a href="#">Donna</a>
        <a href="#">Offerte</a>
        <a href="#">Contatti</a>
    </nav>
</header>

<section class="hero">
    <h1>Potenzia il tuo Allenamento</h1>
    <p>Scopri il miglior abbigliamento fitness uomo e donna selezionato per performance, comfort e stile.</p>
    <a href="#" class="btn">Scopri le Offerte</a>
</section>

<section class="section">
    <h2>Le Nostre Selezioni</h2>
    <div class="cards">
        <div class="card">
            <h3>Fitness Uomo</h3>
            <p>Maglie tecniche, pantaloncini e accessori per allenamenti intensi.</p>
            <a href="#">Scopri Ora</a>
        </div>

        <div class="card">
            <h3>Fitness Donna</h3>
            <p>Leggings, top sportivi e outfit performanti per ogni workout.</p>
            <a href="#">Scopri Ora</a>
        </div>

        <div class="card">
            <h3>Best Seller</h3>
            <p>I prodotti fitness più acquistati e meglio recensiti.</p>
            <a href="#">Vedi Prodotti</a>
        </div>
    </div>
</section>

<section class="cta">
    <h2>Allenati con Stile e Performance</h2>
    <p>Selezioniamo solo i migliori brand fitness per garantirti qualità e risultati.</p>
    <br>
    <a href="#" class="btn">Inizia Subito</a>
</section>

<footer>
    © 2026 VirgilioFitness - Affiliate Marketing Fitness | Tutti i diritti riservati
</footer>

</body>
</html>