﻿.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-1488646953014-85cb44e25828?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');*/
    background: linear-gradient( 135deg, rgba(25, 118, 210, 0.4) 0%, rgba(200, 230, 201, 0.4) 100% ), url('/assets/images/cedroexcursoes.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;
    }

.destination-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);
}

    .destination-card:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 25px 50px rgba(25, 118, 210, 0.15);
    }

.destination-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.destination-card:hover .destination-image {
    transform: scale(1.05);
}

.destination-content {
    padding: 2rem;
}

.destination-title {
    color: #1976d2;
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.destination-price {
    background: linear-gradient(135deg, #43a047 0%, #66bb6a 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.destination-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

    .destination-features li {
        padding: 0.25rem 0;
        font-size: 0.9rem;
        color: #616161;
    }

    .destination-features i {
        color: #43a047;
        margin-right: 0.5rem;
        width: 16px;
    }

.book-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);
}

    .book-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(25, 118, 210, 0.4);
        color: white;
    }

.excursion-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);
}

.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;
    }

/* ===== RESPONSIVIDADE MELHORADA ===== */
@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;
    }

    .destination-content {
        padding: 1.75rem;
    }

    .quote-form {
        padding: 2.25rem;
    }

    .type-card {
        padding: 1.75rem;
    }
}

@media (max-width: 768px) {
    .hero-banner h1 {
        font-size: 2.2rem !important;
    }

    .hero-banner p {
        font-size: 1.1rem !important;
    }

    .destination-content {
        padding: 1.5rem;
    }

    .quote-form {
        padding: 2rem;
    }

    .type-card {
        padding: 1.5rem;
    }

    .type-icon {
        font-size: 3rem;
        width: 80px;
        height: 80px;
        padding: 1rem;
    }

    .destination-image {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .hero-banner h1 {
        font-size: 1.8rem !important;
    }

    .hero-banner p {
        font-size: 1rem !important;
    }

    .destination-content {
        padding: 1.25rem;
    }

    .quote-form {
        padding: 1.5rem;
    }

    .type-card {
        padding: 1.25rem;
    }

    .type-icon {
        font-size: 2.5rem;
        width: 70px;
        height: 70px;
    }

    .destination-image {
        height: 180px;
    }

    .destination-title {
        font-size: 1.2rem;
    }

    .destination-price {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-banner h1 {
        font-size: 1.6rem !important;
    }

    .hero-banner p {
        font-size: 0.95rem !important;
    }

    .destination-image {
        height: 160px;
    }
}
