
:root {
    --gold-light: #FFEAB0;
    --gold-dark: #C19B13;
    --gold-gradient: linear-gradient(135deg, #FFEAB0 0%, #C19B13 100%);
    --bg-dark: #0a0a0a;
    --bg-lighter: #151515;
    --text-light: #f5f5f5;
    --text-muted: #aaaaaa;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

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

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gold-gradient);
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(193, 155, 19, 0.2);
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 60px; /* Altura ajustável conforme a proporção real da logo */
    width: auto;
    transition: transform 0.3s ease;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 5% 2rem;
    position: relative;
    background: radial-gradient(circle at center, var(--bg-lighter) 0%, var(--bg-dark) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/foto1.webp') center center/cover;
    opacity: 0.15;
    mix-blend-mode: luminosity;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    animation: fadeInUp 1s ease-out forwards;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gold-gradient);
    color: var(--bg-dark);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(193, 155, 19, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(193, 155, 19, 0.5);
}

.btn-outline {
    display: inline-block;
    padding: 0.9rem 2.4rem;
    background: transparent;
    color: var(--gold-light);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid var(--gold-dark);
    cursor: pointer;
}

.btn-outline:hover {
    background: rgba(193, 155, 19, 0.1);
    transform: translateY(-3px);
}

/* About Section */
.about {
    padding: 6rem 5%;
    display: flex;
    align-items: center;
    gap: 4rem;
    background-color: var(--bg-dark);
}

.about-img {
    flex: 1;
    position: relative;
}

.about-img img {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    display: block;
    margin: 0 auto;
    border: 1px solid rgba(193, 155, 19, 0.2);
}

.about-img::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: -20px;
    left: -20px;
    border: 2px solid var(--gold-dark);
    border-radius: 10px;
    z-index: -1;
    max-width: 500px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Cities Section */
.cities {
    padding: 6rem 5%;
    background-color: var(--bg-lighter);
}

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

.city-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(193, 155, 19, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.city-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-dark);
    box-shadow: 0 10px 30px rgba(193, 155, 19, 0.1);
}

.city-icon {
    font-size: 2.5rem;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
}

.city-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.city-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    min-height: 40px;
}

/* Contact Form Section */
.contact {
    padding: 6rem 5%;
    background-color: var(--bg-dark);
    position: relative;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-lighter);
    padding: 4rem;
    border-radius: 20px;
    border: 1px solid rgba(193, 155, 19, 0.15);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-control {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-dark);
    box-shadow: 0 0 10px rgba(193, 155, 19, 0.2);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C19B13' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    background-size: 1em;
}

select.form-control option {
    background-color: var(--bg-lighter);
    color: var(--text-light);
}

.submit-btn {
    width: 100%;
    margin-top: 1rem;
    font-size: 1.1rem;
    padding: 1.2rem;
}

/* FAQ Section */
.faq {
    padding: 6rem 5%;
    background-color: var(--bg-lighter);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(193, 155, 19, 0.15);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(193, 155, 19, 0.3);
}

.faq-item.active {
    border-color: var(--gold-dark);
    box-shadow: 0 5px 20px rgba(193, 155, 19, 0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.1rem;
    font-family: var(--font-body);
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--gold-light);
}

.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--gold-dark);
    transition: transform 0.3s ease;
}

.faq-icon::before {
    width: 2px;
    height: 100%;
}

.faq-icon::after {
    width: 100%;
    height: 2px;
}

.faq-item.active .faq-icon::before {
    transform: rotate(90deg);
}

.faq-item.active .faq-icon::after {
    transform: rotate(180deg);
}

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

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.faq-answer-content p {
    margin-bottom: 1rem;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-answer-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.faq-answer-content ul li {
    margin-bottom: 0.5rem;
}

.faq-answer-content strong {
    color: var(--text-light);
}

/* Footer */
footer {
    background-color: var(--bg-lighter);
    padding: 3rem 5%;
    text-align: center;
    border-top: 1px solid rgba(193, 155, 19, 0.1);
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-links a {
    color: var(--gold-dark);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(193, 155, 19, 0.2);
    border-radius: 50%;
}

.social-links a:hover {
    color: var(--bg-dark);
    background: var(--gold-gradient);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(193, 155, 19, 0.3);
}

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

/* Responsive */
@media (max-width: 992px) {
    .about {
        flex-direction: column;
    }
    .about-img::after {
        display: none;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .contact-container {
        padding: 2rem;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .btn-outline {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    .btn-primary {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }
    .about-text .btn-outline {
        display: table;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Cookie Consent Popup */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    background: var(--bg-lighter);
    border: 1px solid var(--gold-dark);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(193, 155, 19, 0.2);
    z-index: 9999;
    display: none;
    flex-direction: column;
    gap: 15px;
}

.cookie-consent.show {
    display: flex;
    animation: slideUp 0.5s ease-out forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content h4 {
    color: var(--gold-light);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.cookie-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 0;
}

.cookie-content a {
    color: var(--gold-light);
    text-decoration: underline;
}

.cookie-content a:hover {
    color: var(--gold-dark);
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cookie-buttons .btn-primary,
.cookie-buttons .btn-outline {
    width: 100%;
    padding: 0.8rem;
    font-size: 0.9rem;
    text-align: center;
}

@media (max-width: 480px) {
    .cookie-consent {
        width: calc(100% - 40px);
        bottom: 20px;
        right: 20px;
    }
}
