/* Fisco Adesso Custom Styles */

/* Hero Section Fisco */
.hero-section-fisco {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 0;
    min-height: 100vh;
}

.hero-section-fisco .display-2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Step Cards */
.step-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
    border: 1px solid #e9ecef;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--highlight-color);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

/* WhatsApp Section */
.whatsapp-section {
    background: linear-gradient(45deg, #25d366 0%, #128c7e 100%);
    padding: 80px 0;
}

.whatsapp-icon {
    font-size: 10rem;
    color: rgba(255,255,255,0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.05); }
    100% { opacity: 0.2; transform: scale(1); }
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    padding: 80px 0;
}

.testimonial-card {
    background: rgba(255,255,255,0.95);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--neutral-color) 100%);
    padding: 80px 0;
}

/* Button Styles */
.btn-highlight {
    background: var(--highlight-color);
    border: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-highlight:hover {
    background: #f4db7a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 226, 154, 0.3);
    color: var(--text-dark);
}

/* Service Items */
.service-item {
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 8px;
}

.service-item:hover {
    background: rgba(61, 125, 138, 0.05);
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section-fisco {
        padding: 60px 0;
    }

    .hero-section-fisco .min-vh-100 {
        min-height: auto !important;
    }

    .whatsapp-icon {
        font-size: 6rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .feature-icon {
        font-size: 2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Enhanced Focus States */
.btn:focus,
a:focus {
    outline: 2px solid var(--highlight-color);
    outline-offset: 2px;
}