
/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    background: linear-gradient(120deg, #ff6600 40%, #ff884d 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeIn 1.5s ease-in-out forwards;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-top: 20px;
    animation: fadeIn 2s ease-in-out forwards;
}

.btn-discover {
    margin-top: 30px;
    padding: 12px 30px;
    background-color: #fff;
    color: #ff6600;
    border-radius: 30px;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.btn-discover:hover {
    background-color: #ff884d;
    color: white;
}

/* Sezione Vantaggi */
.benefits-section {
    padding: 100px 20px;
    background-color: #fff;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.benefit-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item img {
    width: 60px;
    margin-bottom: 20px;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.benefit-item p {
    font-size: 1rem;
}

/* Sezione Video */
.video-section {
    padding: 100px 20px;
    background-color: #f0f4f8;
    text-align: center;
}

.video-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

video {
    width: 80%;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    background-color: #ff6600;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-btn {
    margin-top: 30px;
    padding: 15px 40px;
    background-color: white;
    color: #ff6600;
    font-size: 1.2rem;
    border-radius: 30px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-btn:hover {
    background-color: #ff884d;
    color: white;
}

/* Media Queries */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    video {
        width: 100%;
    }
}
