﻿.hero-banner {
    /*background: linear-gradient(135deg, rgba(25, 118, 210, 0.9) 0%, rgba(67, 160, 71, 0.9) 100%), url('/assets/images/cedroeventos.png');*/
    background: linear-gradient( 135deg, rgba(25, 118, 210, 0.4) 0%, rgba(200, 230, 201, 0.4) 100% ), url('/assets/images/cedroeventos.png');
    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;
    }

.event-card {
    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);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    backdrop-filter: blur(10px);
}

    .event-card:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 25px 50px rgba(25, 118, 210, 0.15);
    }

.event-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.event-card:hover .event-image {
    transform: scale(1.05);
}

.event-content {
    padding: 2rem;
}

.event-title {
    color: #1976d2;
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.event-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

    .event-features li {
        padding: 0.5rem 0;
        font-size: 0.95rem;
        color: #616161;
        border-bottom: 1px solid rgba(25, 118, 210, 0.1);
    }

        .event-features li:last-child {
            border-bottom: none;
        }

    .event-features i {
        color: #43a047;
        margin-right: 0.75rem;
        width: 20px;
    }

.quote-btn {
    background: linear-gradient(135deg, #1976d2 0%, #43a047 100%);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
}

    .quote-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(25, 118, 210, 0.4);
        color: white;
    }

.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;
    }

.testimonial-section {
    background: linear-gradient(135deg, #e3f2fd 0%, #e8f5e9 100%);
}

.testimonial-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;
}

    .testimonial-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(25, 118, 210, 0.15);
    }

/* ===== RESPONSIVIDADE MELHORADA ===== */
@media (max-width: 992px) {
    .event-content {
        padding: 1.75rem;
    }

    .service-details {
        padding: 2.25rem;
    }

    .quote-form {
        padding: 2.25rem;
    }

    .testimonial-card {
        padding: 1.75rem;
    }
}

@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;
    }

    .event-content {
        padding: 1.5rem;
    }

    .service-details {
        padding: 2rem;
    }

    .quote-form {
        padding: 2rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .benefit-item {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }

    .benefit-icon {
        font-size: 1.25rem;
    }

    .event-image {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .hero-banner h1 {
        font-size: 1.8rem !important;
    }

    .hero-banner p {
        font-size: 1rem !important;
    }

    .event-content {
        padding: 1.25rem;
    }

    .service-details {
        padding: 1.5rem;
    }

    .quote-form {
        padding: 1.5rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .benefit-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .event-image {
        height: 180px;
    }

    .event-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-banner h1 {
        font-size: 1.6rem !important;
    }

    .hero-banner p {
        font-size: 0.95rem !important;
    }

    .event-image {
        height: 160px;
    }
}
