/* Variáveis de cores */
:root {
    --gold: #d4af37;
    --gold-light: #f5e7a3;
    --gold-dark: #9e7c0c;
    --black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --medium-gray: #333333;
    --light-gray: #f8f8f8;
    --white: #ffffff;
}

/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--light-gray);
    background-color: var(--black);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--gold);
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--gold-light);
}

/* Header */
header {
    background-color: var(--dark-gray);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 2rem;
    margin: 0;
    color: var(--white);
}

.logo span {
    color: var(--gold);
}

/* Menu de navegação */
nav ul {
    display: flex;
    list-style: none;
}

nav li {
    margin-left: 30px;
}

nav a {
    color: var(--white);
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
}

nav a:hover {
    color: var(--gold);
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--gold);
    transition: all 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Menu Hamburger Mobile */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    color: var(--gold);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--light-gray);
}

.btn-primary {
    display: inline-block;
    background-color: var(--gold);
    color: var(--black);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--gold);
}

/* Sections */
.section {
    padding: 100px 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.separator {
    width: 80px;
    height: 3px;
    background-color: var(--gold);
    margin: 20px auto;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
}

.bg-dark {
    background-color: var(--dark-gray);
}

/* Services */
.services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--medium-gray);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--white);
}

/* Feature List */
.feature-list {
    list-style: none;
    margin: 2rem 0;
}

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: baseline;
}

.feature-list i {
    color: var(--gold);
    margin-right: 10px;
}

.note {
    font-style: italic;
    opacity: 0.8;
    margin-top: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid var(--gold);
}

/* Contact */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background-color: var(--medium-gray);
    padding: 30px;
    border-radius: 10px;
    border-top: 3px solid var(--gold);
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--white);
}

.info-card p {
    margin-bottom: 8px;
}

.info-card i {
    color: var(--gold);
    margin-right: 10px;
}

/* Policies */
.policy-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.policy-link {
    margin: 0 15px;
    text-decoration: underline;
    font-weight: 500;
}

.compliance {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer */
footer {
    background-color: var(--dark-gray);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid var(--gold);
}

.footer-content p {
    margin-bottom: 5px;
}

.contact-email {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px dashed rgba(212, 175, 55, 0.3);
    display: inline-block;
}

.contact-email i {
    color: var(--gold);
    margin-right: 8px;
}

.contact-email a {
    color: var(--gold);
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-email a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 1200px) {
    .services {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: row;
    }
    
    .menu-toggle {
        display: block;
        z-index: 101;
    }
    
    .main-nav {
        position: fixed;
        background-color: rgba(26, 26, 26, 0.95);
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }
    
    .main-nav.show {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        text-align: center;
        width: 100%;
    }
    
    .main-nav li {
        margin: 15px 0;
    }
    
    .main-nav a {
        font-size: 1.2rem;
        display: block;
        padding: 10px;
    }
    
    .main-nav a::after {
        display: none;
    }
    
    body.menu-active {
        overflow: hidden;
    }
    
    body.menu-active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 90;
    }
    
    nav li {
        margin: 0;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .services {
        grid-template-columns: 1fr;
    }
    
    .language-switcher {
        order: 1;
        margin-right: 15px;
    }
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 20px;
    margin-left: 10px;
    border: 1px solid transparent;
    border-radius: 3px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.lang-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lang-btn.active {
    border-color: var(--gold);
    opacity: 1;
    transform: scale(1.1);
}

.lang-btn:hover {
    opacity: 1;
    border-color: var(--gold-light);
} 