:root {
    --primary-color: #1a1a1a;
    --accent-color: #C9A87C;
    --text-color: #333;
    --light-color: #fff;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
}

header {
    background-color: transparent;
    padding: 1.5rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

header.scrolled {
    background-color: rgba(26, 26, 26, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-links a {
    color: var(--light-color);
    text-decoration: none;
    margin: 0 1.5rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

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

.logo {
    color: var(--light-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.logo a {
    text-decoration: none;
    color: var(--light-color);
}

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

.language-selector button {
    background: none;
    border: 1px solid var(--light-color);
    color: var(--light-color);
    padding: 0.5rem 1rem;
    margin-left: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-selector button:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.hero {
    height: 100vh;
    /* Temporariamente usando uma imagem de placeholder */
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
        url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
}

.cta-button {
    background-color: var(--accent-color);
    color: var(--light-color);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background-color: var(--light-color);
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.cta-button::before {
    content: "\f232";
    font-family: "Font Awesome 6 Brands";
    margin-right: 10px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    padding: 2rem;
    border: 1px solid #ddd;
    text-align: center;
    transition: all 0.3s ease;
}

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

/* Adicionando estilos para os cards de experiência */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.experience-card {
    position: relative;
    overflow: hidden;
    height: 400px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.experience-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.experience-card h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: var(--light-color);
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    margin: 0;
}

/* Temporariamente usando imagens de placeholder para os cards */
.experience-card:nth-child(1) img {
    content: url('https://images.unsplash.com/photo-1499793983690-e29da59ef1c2?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
}

.experience-card:nth-child(2) img {
    content: url('https://images.unsplash.com/photo-1569263979104-865ab7cd8d13?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
}

.experience-card:nth-child(3) img {
    content: url('https://images.unsplash.com/photo-1551524164-687a55dd1126?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
}

/* Estilos do Footer */
footer {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 4rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-link {
    color: var(--light-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-color);
}

.whatsapp {
    color: #25D366;
}

.whatsapp:hover {
    color: #128C7E;
}

/* Melhorias na responsividade */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none; /* Você pode adicionar um menu hamburguer aqui */
    }

    .experience-card {
        height: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-info {
        align-items: center;
    }
}

/* Botão flutuante do WhatsApp para mobile */
.whatsapp-float {
    display: none;
}

@media (max-width: 768px) {
    .whatsapp-float {
        display: block;
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #25D366;
        color: white;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        text-align: center;
        line-height: 60px;
        font-size: 30px;
        box-shadow: 2px 2px 3px rgba(0,0,0,0.2);
        z-index: 1000;
        transition: all 0.3s ease;
        background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBmaWxsPSJ3aGl0ZSIgZD0iTTEyIDIuMTZjNS40NCAwIDkuODQgNC40MiA5Ljg0IDkuODUgMCA1LjQyLTQuNCA5Ljg0LTkuODQgOS44NC01LjQzIDAtOS44NC00LjQyLTkuODQtOS44NCAwLTUuNDMgNC40LTkuODUgOS44NC05Ljg1ek0xMiAwQzUuMzcgMCAwIDUuMzcgMCAxMmMwIDYuNjIgNS4zNyAxMiAxMiAxMiA2LjYyIDAgMTItNS4zOCAxMi0xMiAwLTYuNjMtNS4zOC0xMi0xMi0xMnptLTEuMjUgMTUuNWwtMy43Ni0zLjc1IDEuMjUtMS4yNSAyLjUgMi41IDUuNS01LjUgMS4yNSAxLjI1LTYuNzQgNi43NXoiLz48L3N2Zz4=');
        background-repeat: no-repeat;
        background-position: center;
        background-size: 30px;
    }

    .whatsapp-float:hover {
        transform: scale(1.1);
        background-color: #128C7E;
    }
}

/* Atualize os estilos dos textos para centralizar */
.featured-experiences h2,
.about-content h2,
.about-content p {
    text-align: center;
    margin-bottom: 2rem;
}

.featured-experiences h2 {
    font-size: 2.8rem;
    margin-top: 4rem;
    color: var(--primary-color);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 6rem 2rem;
    text-align: center;
}

.about-content h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
}

.about-content p {
    font-size: 1.2rem;
    color: var(--text-color);
    font-family: var(--font-heading);
}

/* Estilos para as páginas legais */
.legal-content {
    max-width: 800px;
    margin: 120px auto 60px;
    padding: 0 2rem;
    padding-top: 100px;
}

.legal-content h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.legal-text {
    font-family: var(--font-body);
    line-height: 1.8;
}

.legal-text .last-updated {
    color: var(--accent-color);
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-text section {
    margin-bottom: 3rem;
}

.legal-text h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.legal-text ul {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .legal-content {
        margin-top: 100px;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-text h2 {
        font-size: 1.5rem;
    }
}

/* Garantir que o header seja visível nas páginas legais */
.legal-page header {
    background-color: var(--primary-color);
} 