/* SEZIONE CLAUDE - Nuovo design alternativo */
.hero-carousel {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    color: white;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-cta {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-hero {
    background-color: #FF6200;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background-color: #e55600;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 98, 0, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #FF6200;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Topbar */
.topbar {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 8px 0;
    font-size: 14px;
}

.contact-info a {
    color: #495057;
    text-decoration: none;
    margin-right: 20px;
}

.contact-info a:hover {
    color: #007bff;
}

.social-links a {
    color: #6c757d;
    margin-left: 10px;
    font-size: 18px;
}

.social-links a:hover {
    color: #007bff;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand img {
    height: 40px;
}

.btn-client-access {
    background-color: #28a745;
    border-color: #28a745;
    color: white;
    font-weight: 500;
}

.btn-client-access:hover {
    background-color: #218838;
    border-color: #1e7e34;
    color: white;
}

/* Hero Section - Claude Version */
.hero-carousel {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    color: white;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-cta {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-hero {
    background-color: #FF6200;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background-color: #e55600;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 98, 0, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #FF6200;
}

/* CTA Section */
.cta-section {
    background-color: #f8f9fa;
}

.cta-section h2 {
    color: #333;
    font-weight: 700;
}

.cta-section p {
    color: #666;
    font-size: 1.2rem;
}

.cta-section .btn {
    background-color: #FF6200;
    border-color: #FF6200;
    color: white;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 98, 0, 0.3);
    transition: all 0.3s ease;
}

.cta-section .btn:hover {
    background-color: #e55600;
    border-color: #e55600;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 98, 0, 0.4);
}

/* Separatori */
.section-separator {
    margin: 4rem 0;
    border: 2px solid #dee2e6;
}

/* Animazioni */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .cta-section h2 {
        font-size: 1.8rem;
    }
    .cta-section p {
        font-size: 1rem;
    }
}
.image-box-features .titleservizi {
    line-height: 10rem;
}

.image-box-features .image-box-img {
    position: relative;
    top: -50px
}
.image-box-features .widget-image-box{
    height: 150px;
    margin-top: 50px;
    border: 1px solid #ebe6e4;
    background-color: #f8f9fa;
    width: 30%;
    margin-bottom: 2rem;
}
.image-box-features .image-box-wrapper {
    height: 150px !important;
    text-align: center;
}