/*
 * Arquivo de Estilos Modernos e Bonitos
 * Estilos para o site da Agência de Turismo.
 */

/* Google Fonts - Importação */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --accent-color: #fd7e14;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-color);
    color: var(--dark-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Navbar */
.navbar {
    transition: all 0.3s ease-in-out;
}

.navbar-brand img {
    height: 40px;
}

.nav-link {
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
    height: 80vh; /* Aumenta a altura para ter mais impacto */
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
}

.hero-section .display-2 { /* Muda para um tamanho de fonte maior */
    font-weight: 800;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
    font-size: 3.5rem;
}

.hero-section .lead {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.btn-hero {
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Featured Packages Section */
.featured-section {
    padding: 5rem 0;
}

.featured-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.featured-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 10px auto 0;
}

/* Card Styles */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.card-body {
    padding: 24px;
}

.card-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: auto;
}

.card-title {
    font-weight: 600;
    font-size: 1.25rem;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    background: linear-gradient(45deg, #007bff, #0056b3);
    border-radius: 12px;
    padding: 4rem;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.cta-section p.lead {
    font-weight: 300;
}

.btn-cta {
    background-color: white;
    color: var(--primary-color);
    font-weight: 700;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: var(--accent-color);
    color: white;
    transform: scale(1.05);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
}

.footer small {
    font-weight: 300;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
    }

    .hero-section .display-2 {
        font-size: 2.5rem;
    }
    
    .featured-section {
        padding: 3rem 0;
    }
}