/* Add your custom styles here */

.hero {
    position: relative;
    min-height: 400px; /* Adjust the height as needed */
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Media query for mobile responsiveness */
@media (max-width: 767px) {
    .hero-text {
        max-width: 70%;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
        margin-bottom: 5px;
        text-align: center;
    }

    .hero-text p {
        font-size: 1rem;
        text-align: center;
    }
}

.prices {
    font-size: 1rem;
    font-weight: bold;
    color: #FFF;
}

.prices-subtitle {
    font-size: 1rem;
    font-weight: bold;
}

.colored {
    background-color: #FF9B50;
}

.aeroporto {
    font-size: 1.5rem;
    font-family: sans-serif;
    color: #ff5252;
}

.hero-text h1 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add text shadow */
}

.hero-text p {
    font-size: 1.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add text shadow */
}

.chat-bubble {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    padding: 15px;
    border-radius: 20px 20px 0 20px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.chat-bubble:hover {
    background-color: #128C7E;
}

.main-header {
    font-family: nunito;
    font-weight: 600;
}
.parallax-section {
    background-image: url('../img/parallax.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 400px; /* Adjust the height as needed */
    display: flex;
    align-items: center;
    justify-content: center; /* Center text horizontally */
    text-align: center; /* Center text vertically */
    color: #ffffff;
    padding: 0 20px;
}

.parallax-text {
    max-width: 80%; /* Adjust the maximum width as needed */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add text shadow */
}
@media (min-width: 767px) {
    .parallax-paragraph{
        font-size: 1.5em;
    }
}

.logo{
    font-family: nunito;
    font-weight: 600;
}