/* Variáveis CSS */
:root {
    --azul-escuro: #1a3a5c;
    --branco: #ffffff;
    --dourado: #daa520;
    --azul-claro: #2c5282;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Header */
.header {
    background: linear-gradient(135deg, #1a3a5c 0%, #2c5282 100%);
    color: white;
    padding: 2rem 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.logo {
    width: 500px;
    height: 300px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 100%;
    height: auto;
    filter: brightness(1.1);
}

.company-name {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #ffff, #daa520);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.2rem;
    opacity: 0.9;
    font-style: italic;
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1a3a5c;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #1a3a5c, #daa520);
    border-radius: 2px;
}

/* Destinations Grid */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.destination-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.destination-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.destination-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(26,58,92,0.3), rgba(26,58,92,0.7));
}

.destination-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    z-index: 1;
}

.destination-content {
    padding: 1.5rem;
}

.destination-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.destination-price {
    color: #daa520;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.btn-explore {
    background: linear-gradient(135deg, #1a3a5c 0%, #2c5282 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    width: 100%;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-explore:hover {
    background: linear-gradient(135deg, #2c5282 0%, #1a3a5c 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26,58,92,0.3);
}

/* Footer */
footer {
    background: var(--azul-escuro);
    color: var(--branco);
    padding: 28px 5vw 18px 5vw;
    text-align: center;
    border-radius: 18px 18px 0 0;
    margin-top: 48px;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
}

.footer-contact {
    margin: 18px 0 8px 0;
    font-size: 1em;
}

footer a {
    color: var(--dourado);
    font-weight: 600;
    text-decoration: none;
}

footer a:hover {
    color: var(--azul-claro);
}

/* Responsive */
@media (max-width: 1024px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .company-name {
        font-size: 2rem;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .container {
        padding: 2rem 1rem;
    }

    .logo {
        width: 200px;
        height: 150px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .destination-title {
        font-size: 1.5rem;
    }
}
