/* Estilos Gerais */
:root {
    --primary-color: #1A3A5F;
    --secondary-color: #4ECDC4;
    --accent-color: #FF6B35;
    --light-color: #FFFFFF;
    --dark-color: #333333;
    --gray-color: #F5F5F5;
    --text-color: #555555;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-weight: 600;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

.btn {
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-primary:hover {
    background-color: #e85a24;
    border-color: #e85a24;
}

.btn-outline-primary {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-outline-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.section-padding {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: var(--text-color);
    font-size: 18px;
}

/* Header / Navbar */
.header {
    position: relative;
}

.navbar {
    padding: 20px 0;
    transition: all 0.3s ease;
    background-color: transparent;
}

.navbar.scrolled {
    background-color: var(--primary-color);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--light-color) !important;
}

.navbar-nav .nav-link {
    color: var(--light-color);
    font-weight: 500;
    padding: 10px 15px;
    position: relative;
}

.navbar-nav .nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: 5px;
    left: 15px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover:after,
.navbar-nav .nav-link.active:after {
    width: calc(100% - 30px);
}

.navbar-nav .btn-membro {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 5px !important;
    margin-left: 10px;
    padding: 8px 20px;
}

.navbar-nav .btn-login {
    border: 1px solid var(--light-color);
    border-radius: 5px;
    margin-left: 10px;
    padding: 8px 20px;
}

.navbar-nav .btn-membro:hover,
.navbar-nav .btn-login:hover {
    background-color: var(--accent-color);
    color: var(--light-color);
    border-color: var(--accent-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRT7LhJW5P4o6HZ7N6P6pwdxK6pp-AZXXQ4GA&s');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--light-color);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--light-color);
    animation: fadeInDown 1s ease;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
}

.hero-buttons {
    animation: fadeIn 1.5s ease;
}

.hero-buttons .btn {
    margin: 0 10px;
}

/* Destinos em Destaque */
.destination-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.destination-image {
    position: relative;
    overflow: hidden;
}

.destination-image img {
    transition: all 0.5s ease;
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.destination-card:hover .destination-image img {
    transform: scale(1.1);
}

.destination-price {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: var(--light-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
}

.destination-content {
    padding: 20px;
}

.destination-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.destination-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: var(--text-color);
    font-size: 14px;
}

.destination-meta span i {
    color: var(--secondary-color);
    margin-right: 5px;
}

/* Próximas Viagens */
.trip-card {
    display: flex;
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.trip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.trip-date {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}

.trip-date .month {
    font-size: 16px;
    font-weight: 600;
}

.trip-date .day {
    font-size: 28px;
    font-weight: 700;
}

.trip-content {
    padding: 20px;
    flex-grow: 1;
}

.trip-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.trip-content p {
    margin-bottom: 5px;
    font-size: 14px;
}

.trip-content p i {
    color: var(--secondary-color);
    margin-right: 8px;
}

.trip-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.trip-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-color);
}

.trip-availability {
    font-size: 14px;
    color: var(--text-color);
}

/* Depoimentos */
.testimonial-card {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-image {
    margin-bottom: 20px;
}

.testimonial-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 5px solid var(--secondary-color);
}

.testimonial-rating {
    color: #FFD700;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-trip {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Call to Action */
.cta {
    /* background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://source.unsplash.com/random/1920x1080/?adventure'); */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--light-color);
}

.cta-content h2 {
    color: var(--light-color);
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-buttons .btn {
    margin: 0 10px;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 80px 0 0;
}

.footer h3, .footer h4, .footer h5 {
    color: var(--light-color);
    margin-bottom: 20px;
}

.footer-about p {
    margin-bottom: 20px;
}

.social-links {
    display: flex;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: var(--light-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--light-color);
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 15px;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.newsletter {
    margin-top: 20px;
}

.newsletter form {
    display: flex;
}

.newsletter input {
    flex-grow: 1;
    border: none;
    padding: 10px 15px;
    border-radius: 30px 0 0 30px;
}

.newsletter button {
    background-color: var(--accent-color);
    border: none;
    color: var(--light-color);
    padding: 10px 15px;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter button:hover {
    background-color: #e85a24;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 50px;
}

.footer-bottom p {
    margin-bottom: 0;
}

.footer-bottom a {
    color: var(--secondary-color);
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Hero Section */
.page-hero {
    height: 50vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--light-color);
}

.page-hero .hero-overlay {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.card-with-bg {
    background-size: cover;
    background-position: center;
    position: relative;
    height: 400px;
    display: flex;
    align-items: flex-end;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.5));
    z-index: 1;
}

.card-with-bg .destination-content {
    position: relative;
    z-index: 2;
    padding: 30px 20px;
}

.card-with-bg .destination-meta span i,
.card-with-bg h3 {
    color: var(--light-color);
}

.card-with-bg .btn-outline-light:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}