﻿.hero-banner {
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.9) 0%, rgba(67, 160, 71, 0.9) 100%), url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

    /* Hero Title Visibility Enhancement */
    .hero-banner h1 {
        color: #ffffff !important;
        font-size: 3.5rem !important;
        font-weight: 700 !important;
        text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8) !important;
        margin-bottom: 1.5rem !important;
        position: relative !important;
        z-index: 100 !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    /* Hero Subtitle Visibility Enhancement */
    .hero-banner p {
        color: #ffffff !important;
        font-size: 1.25rem !important;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7) !important;
        margin-bottom: 2rem !important;
        position: relative !important;
        z-index: 100 !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

.service-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(25, 118, 210, 0.08);
    border: 1px solid rgba(25, 118, 210, 0.1);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-details {
    padding: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(25, 118, 210, 0.05);
    border-radius: 12px;
    border-left: 4px solid #1976d2;
    transition: all 0.3s ease;
}

    .benefit-item:hover {
        background: rgba(25, 118, 210, 0.1);
        transform: translateX(5px);
    }

.benefit-icon {
    font-size: 1.5rem;
    color: #1976d2;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.quote-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(25, 118, 210, 0.08);
    border: 1px solid rgba(25, 118, 210, 0.1);
    backdrop-filter: blur(10px);
}

.form-control,
.form-select {
    border: 2px solid rgba(25, 118, 210, 0.15);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 1rem;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.06);
    transition: all 0.3s ease;
}

    .form-control:focus,
    .form-select:focus {
        border-color: #1976d2;
        box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.12), 0 4px 12px rgba(25, 118, 210, 0.08);
        outline: none;
        transform: translateY(-1px);
    }

.form-label {
    font-weight: 600;
    color: #1976d2;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.submit-btn {
    background: linear-gradient(135deg, #1976d2 0%, #43a047 100%);
    border: none;
    color: white;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
    width: 100%;
}

    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(25, 118, 210, 0.4);
        color: white;
    }

.service-types {
    background: linear-gradient(135deg, #e3f2fd 0%, #e8f5e9 100%);
}

.type-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(25, 118, 210, 0.08);
    border: 1px solid rgba(25, 118, 210, 0.1);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

    .type-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(25, 118, 210, 0.15);
    }

.type-icon {
    font-size: 3.5rem;
    color: white;
    background: linear-gradient(135deg, #1976d2 0%, #43a047 100%);
    padding: 1.25rem;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(25, 118, 210, 0.3);
}

/* ===== RESPONSIVIDADE MELHORADA ===== */
@media (max-width: 992px) {
    .service-details {
        padding: 2.25rem;
    }

    .quote-form {
        padding: 2.25rem;
    }
}

@media (max-width: 1200px) {
    .hero-banner h1 {
        font-size: 3rem !important;
    }
}

@media (max-width: 992px) {
    .hero-banner h1 {
        font-size: 2.8rem !important;
    }

    .hero-banner p {
        font-size: 1.2rem !important;
    }
}

@media (max-width: 768px) {
    .hero-banner h1 {
        font-size: 2.2rem !important;
    }

    .hero-banner p {
        font-size: 1.1rem !important;
    }

    .service-details {
        padding: 2rem;
    }

    .quote-form {
        padding: 2rem;
    }

    .benefit-item {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }

    .benefit-icon {
        font-size: 1.25rem;
    }

    .type-card {
        padding: 1.75rem;
    }

    .type-icon {
        font-size: 3rem;
        width: 80px;
        height: 80px;
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-banner h1 {
        font-size: 1.8rem !important;
    }

    .hero-banner p {
        font-size: 1rem !important;
    }

    .service-details {
        padding: 1.5rem;
    }

    .quote-form {
        padding: 1.5rem;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .benefit-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .type-card {
        padding: 1.5rem;
    }

    .type-icon {
        font-size: 2.5rem;
        width: 70px;
        height: 70px;
    }

    .form-control,
    .form-select {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-banner h1 {
        font-size: 1.6rem !important;
    }

    .hero-banner p {
        font-size: 0.95rem !important;
    }

    .service-content {
        border-radius: 16px;
    }

    .quote-form {
        border-radius: 16px;
    }
}
