/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #333;
    color: white;
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

nav ul li a:hover {
    color: #ddd;
}

/* Main content */
main {
    padding: 2rem 0;
}

/* Hero section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Destinos section */
.destinos {
    background-color: white;
    padding: 3rem 0;
}

.destinos h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.destinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.destino-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.destino-card:hover {
    transform: translateY(-5px);
}

.destino-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.destino-card h3 {
    padding: 1rem;
    margin: 0;
    color: #333;
}

.destino-card p {
    padding: 0 1rem 1rem;
    color: #666;
}

.destino-card a {
    display: block;
    padding: 1rem;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s;
}

.destino-card a:hover {
    background-color: #0056b3;
}

/* Sobre section */
.sobre {
    background-color: #f9f9f9;
    padding: 3rem 0;
}

.sobre h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.sobre p {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.vantagens {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.vantagem {
    text-align: center;
    padding: 1rem;
}

.vantagem h3 {
    color: #007bff;
    margin-bottom: 1rem;
}

/* Contato section */
.contato {
    background-color: white;
    padding: 3rem 0;
}

.contato h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.contato p {
    text-align: center;
    margin-bottom: 2rem;
}

.contato-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.contato-info div {
    text-align: center;
}

.contato-info h3 {
    color: #007bff;
    margin-bottom: 0.5rem;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #0056b3;
}

/* Lead section */
.lead-section {
    background-color: white;
    padding: 3rem 0;
}

.lead-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
}

.lead-section p {
    text-align: center;
    margin-bottom: 2rem;
    color: #666;
}

/* Form */
.lead-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0,123,255,0.3);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #0056b3;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        margin-top: 1rem;
    }
    
    nav ul li {
        margin: 0 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .destinos-grid {
        grid-template-columns: 1fr;
    }
    
    .vantagens {
        grid-template-columns: 1fr;
    }
    
    .contato-info {
        grid-template-columns: 1fr;
    }
    
    .lead-form {
        margin: 0 1rem;
    }
}

.hero-bg {
    background: linear-gradient(rgba(0, 123, 255, 0.8), rgba(0, 123, 255, 0.9)), 
                url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?ixlib=rb-4.0.3&auto=format&fit=crop&w=1740&q=80') center/cover;
}

.carousel-area {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.carousel-area::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    scroll-snap-align: start;
    flex: 0 0 auto;
    width: calc(100% - 1rem);
}

@media (min-width: 768px) {
    .carousel-item {
        width: calc(50% - 1rem);
    }
}

@media (min-width: 1024px) {
    .carousel-item {
        width: calc(33.333% - 1rem);
    }
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.bg-blue-ls {
    background-color: #007bff;
}

.bg-blue-ls-dark {
    background-color: #0069d9;
}

.text-blue-ls {
    color: #007bff;
}

.text-blue-ls-dark {
    color: #0056b3;
}