/* pacotes.css - Estilo unificado para todas as páginas de pacotes */

/* Estilos base do hero */
.section-hero-pacotes {
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 8rem 0 6rem;
    margin-top: 80px; /* Compensa o header fixo */
    position: relative;
}

/* Imagens específicas para cada tipo de pacote */
[data-page-type="aereo"] .section-hero-pacotes {
    background-image: url('../img/Avião.jpg');
}

[data-page-type="maritimo"] .section-hero-pacotes {
    background-image: url('../img/Cruzeiro.jpg');
}

[data-page-type="rodoviario"] .section-hero-pacotes {
    background-image: url('../img/Onibus.jpg');
}

.section-hero-pacotes::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    z-index: 0;
}

.section-hero-pacotes .container {
    position: relative;
    z-index: 1;
}

.section-hero-pacotes h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.section-hero-pacotes p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Pacotes Grid */
.pacotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pacote-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    background: white;
    position: relative;
    border: 2px solid transparent;
}

.pacote-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.pacote-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.pacote-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pacote-card:hover .pacote-image img {
    transform: scale(1.05);
}

.pacote-tag {
    background: var(--primary);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.promo-tag {
    background: var(--accent);
}

.pacote-content {
    padding: 1.5rem;
}

.pacote-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.pacote-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.pacote-location i {
    color: var(--accent);
}

.pacote-description {
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pacote-price {
    margin-bottom: 1.5rem;
}

.pacote-price span {
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
}

.pacote-price strong {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
}

.btn-saiba-mais {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .section-hero-pacotes {
        padding: 6rem 0 4rem;
    }
    
    .section-hero-pacotes h1 {
        font-size: 2.2rem;
    }
    
    .pacotes-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section-hero-pacotes {
        padding: 5rem 0 3rem;
        margin-top: 70px;
    }
    
    .section-hero-pacotes h1 {
        font-size: 1.8rem;
    }
    
    .section-hero-pacotes p {
        font-size: 1rem;
    }
}