/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: 'Inter', sans-serif;
    background: #0d0d0d;
    color: #f5f5f5;
    line-height: 1.6;
    overflow-x: hidden
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2
}

a {
    text-decoration: none;
    color: inherit;
    transition: all .3s
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0)
}

/* Nav */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 13, 13, .95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, .1);
    z-index: 1000;
    padding: 1.5rem 0
}

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

.logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: .05em
}

.logo img {
    height: 36px
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem
}

.logo-main {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1
}

.logo-sub {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: #999;
    line-height: 1
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem
}

.nav-links a {
    font-size: .95rem;
    position: relative
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D4AF37;
    transition: width .3s
}

.nav-links a:hover::after {
    width: 100%
}

.lang {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    background: rgba(255, 255, 255, .05);
    border-radius: 50px
}

.lang-btn {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: .9rem;
    padding: .25rem .75rem;
    border-radius: 20px;
    transition: all .2s
}

.lang-btn.active {
    background: #D4AF37;
    color: #0d0d0d
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: #f5f5f5;
    transition: all .3s
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px)
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px)
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(13, 13, 13, .98);
    border-bottom: 1px solid rgba(212, 175, 55, .1);
    padding: 2rem;
    flex-direction: column;
    gap: 1.5rem
}

.mobile-menu.active {
    display: flex
}

.mobile-menu a {
    font-size: 1.125rem;
    padding: .5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.mobile-lang {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, .05)
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 0 4rem
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, .1), transparent 50%);
    pointer-events: none
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto
}

.badge {
    display: inline-block;
    padding: .5rem 1.5rem;
    background: rgba(212, 175, 55, .1);
    border: 1px solid rgba(212, 175, 55, .3);
    border-radius: 50px;
    font-size: .875rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #D4AF37;
    margin-bottom: 2rem
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 1.5rem
}

.accent {
    color: #D4AF37
}

.hero p {
    font-size: 1.25rem;
    color: #999;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8
}

.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap
}

.btn-primary {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #D4AF37, #F4D03F);
    color: #0d0d0d;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, .3)
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50px;
    font-weight: 500
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, .1)
}

/* Stats */
.stats {
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, .05);
    border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center
}

.stat .num {
    font-size: 3rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: .5rem
}

.stat .label {
    color: #999;
    font-size: .95rem
}

/* Section */
.section {
    padding: 8rem 0
}

.section-header {
    text-align: center;
    margin-bottom: 5rem
}

.label {
    display: inline-block;
    padding: .5rem 1.5rem;
    background: rgba(212, 175, 55, .1);
    border: 1px solid rgba(212, 175, 55, .3);
    border-radius: 50px;
    font-size: .875rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #D4AF37;
    margin-bottom: 1.5rem
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem
}

.section-header p {
    font-size: 1.125rem;
    color: #999;
    max-width: 700px;
    margin: 0 auto
}

/* About */
.about {
    background: #0a0a0a
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start
}

.about-text p {
    color: #999;
    margin-bottom: 1.5rem;
    line-height: 1.8
}

.features {
    display: grid;
    gap: 2rem
}

.feature {
    padding: 2rem;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 12px;
    transition: all .3s
}

.feature:hover {
    background: rgba(255, 255, 255, .05);
    transform: translateY(-4px)
}

.feature .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #D4AF37
}

.feature h3 {
    font-size: 1.25rem;
    margin-bottom: .75rem
}

.feature p {
    color: #999;
    font-size: .95rem;
    line-height: 1.7
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem
}

.service {
    padding: 3rem;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 16px;
    transition: all .3s
}

.service:hover {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(212, 175, 55, .3);
    transform: translateY(-4px)
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem
}

.service-header .num {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(212, 175, 55, .2)
}

.service-header .icon {
    font-size: 3rem;
    color: #D4AF37
}

.service h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem
}

.service p {
    color: #999;
    margin-bottom: 1.5rem;
    line-height: 1.7
}

.service ul {
    list-style: none;
    display: grid;
    gap: .75rem
}

.service ul li {
    color: #999;
    font-size: .95rem;
    padding-left: 1.5rem;
    position: relative
}

.service ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #D4AF37
}

/* Methodology */
.methodology {
    background: #0a0a0a
}

.method-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center
}

.method-text p {
    color: #999;
    margin-bottom: 1.5rem;
    line-height: 1.8
}

.method-items {
    display: grid;
    gap: 2rem;
    margin-top: 3rem
}

.method-item {
    display: flex;
    gap: 1.5rem;
    align-items: start
}

.method-item .num {
    font-size: 2rem;
    font-weight: 700;
    color: #D4AF37;
    min-width: 40px
}

.method-item h4 {
    font-size: 1.125rem;
    margin-bottom: .5rem
}

.method-item p {
    color: #999;
    font-size: .95rem
}

.method-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem
}

.visual-item {
    padding: 2rem;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 12px;
    text-align: center
}

.v-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #D4AF37
}

.visual-item h4 {
    font-size: 1rem
}

/* Process */
.process-timeline {
    display: grid;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto
}

.step {
    display: flex;
    gap: 2rem;
    align-items: start
}

.step-num {
    min-width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4AF37, #F4D03F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d0d0d
}

.step-content {
    flex: 1;
    padding: 1rem 0
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: .75rem
}

.step p {
    color: #999;
    line-height: 1.7
}

/* Team */
.creds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem
}

.cred {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 12px
}

.c-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #D4AF37
}

.cred h4 {
    font-size: 1.125rem;
    margin-bottom: .5rem
}

.cred p {
    color: #999;
    font-size: .95rem
}

.team-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center
}

.team-text p {
    color: #999;
    margin-bottom: 1.5rem;
    line-height: 1.8
}

/* FAQ */
.faq-section {
    background: #0a0a0a
}

.faq-list {
    max-width: 900px;
    margin: 0 auto
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    background: rgba(255, 255, 255, .02)
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    color: #f5f5f5;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all .3s
}

.faq-question:hover {
    background: rgba(255, 255, 255, .05)
}

.faq-question i {
    color: #D4AF37;
    transition: transform .3s
}

.faq-item.active .faq-question i {
    transform: rotate(180deg)
}

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

.faq-item.active .faq-answer {
    max-height: 500px
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: #999;
    line-height: 1.8
}

/* Contact Form */
.contact-form-section {
    background: #0a0a0a
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem
}

.contact-info p {
    color: #999;
    margin-bottom: 3rem;
    line-height: 1.8
}

.contact-methods {
    display: grid;
    gap: 2rem
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    align-items: start
}

.contact-method i {
    font-size: 1.5rem;
    color: #D4AF37;
    margin-top: .25rem;
}

.contact-method h4 {
    font-size: 1.125rem;
    margin-bottom: .5rem;
}

.contact-method p,
.contact-method a {
    color: #999;
    font-size: .95rem;
    margin: 0;
}

.contact-method a:hover {
    color: #D4AF37
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 16px;
    padding: 3rem
}

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

.form-group label {
    display: block;
    margin-bottom: .5rem;
    color: #f5f5f5;
    font-weight: 500
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: .875rem 1rem;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    color: #f5f5f5;
    font-family: inherit;
    font-size: 1rem;
    transition: all .3s
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
    background: rgba(255, 255, 255, .08)
}

.form-group textarea {
    resize: vertical;
    min-height: 120px
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #D4AF37, #F4D03F);
    color: #0d0d0d;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all .3s
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, .3)
}

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    display: none
}

.form-status.success {
    background: rgba(52, 199, 89, .1);
    border: 1px solid rgba(52, 199, 89, .3);
    color: #34c759;
    display: block
}

.form-status.error {
    background: rgba(255, 59, 48, .1);
    border: 1px solid rgba(255, 59, 48, .3);
    color: #ff3b30;
    display: block
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, .05)
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem
}

.footer-logo-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem
}

.footer-brand img {
    width: 36px
}

.footer-brand p {
    color: #999;
    max-width: 300px;
    line-height: 1.7
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem
}

.footer-col a {
    display: block;
    color: #999;
    margin-bottom: .75rem;
    font-size: .95rem
}

.footer-col a:hover {
    color: #D4AF37
}

.footer-lang {
    display: flex;
    gap: .5rem;
    margin-top: 1rem
}

.lang-btn-footer {
    padding: .5rem 1rem;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    color: #999;
    border-radius: 6px;
    cursor: pointer;
    font-size: .9rem;
    transition: all .2s
}

.lang-btn-footer.active {
    background: #D4AF37;
    color: #0d0d0d;
    border-color: #D4AF37
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .05);
    color: #666;
    font-size: .9rem
}

/* Responsive */
@media(max-width:768px) {
    .nav-links {
        display: none
    }

    .mobile-menu-btn {
        display: flex
    }

    .hero h1 {
        font-size: 2.5rem
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem
    }

    .about-grid,
    .method-grid {
        grid-template-columns: 1fr
    }

    .services-grid {
        grid-template-columns: 1fr
    }

    .creds-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .section {
        padding: 4rem 0
    }
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    inset: 0;
    background: #0d0d0d;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity .5s, visibility .5s
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none
}

.loading-content {
    text-align: center
}

.loading-logo {
    height: 200px;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(212, 175, 55, .2);
    border-top-color: #D4AF37;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .5
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, #F4D03F);
    z-index: 9998;
    transition: width .1s;
    width: 0
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(13, 13, 13, .98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(212, 175, 55, .3);
    padding: 1.5rem;
    z-index: 9997;
    transform: translateY(100%);
    transition: transform .3s
}

.cookie-banner.show {
    transform: translateY(0)
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 300px
}

.cookie-text i {
    font-size: 1.5rem;
    color: #D4AF37;
    flex-shrink: 0
}

.cookie-text p {
    color: #ccc;
    font-size: .95rem;
    line-height: 1.6
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center
}

.cookie-link {
    color: #D4AF37;
    font-size: .9rem;
    text-decoration: underline;
    white-space: nowrap
}

.cookie-link:hover {
    color: #F4D03F
}

.cookie-accept {
    padding: .75rem 2rem;
    background: linear-gradient(135deg, #D4AF37, #F4D03F);
    color: #0d0d0d;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, .3)
}

/* Animated Gradient Hero */
.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, .1), transparent 75%);
    animation: gradientMoveSmooth 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes gradientMoveSmooth {

    0%,
    100% {
        background-position: 50% 0%;
        opacity: 1;
    }

    50% {
        background-position: 50% 10%;
        opacity: 0.85;
    }
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 45% 5%, rgba(212, 175, 55, .08), transparent 80%);
    animation: gradientMoveSmooth 20s ease-in-out infinite reverse;
}

/* Geometric Pattern Background */
.about,
.methodology,
.team-section,
.privacy-section {
    position: relative
}

.about::before,
.methodology::before,
.team-section::before,
.privacy-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(212, 175, 55, .015) 40px, rgba(212, 175, 55, .015) 41px), repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(212, 175, 55, .015) 40px, rgba(212, 175, 55, .015) 41px);
    pointer-events: none;
    z-index: 0;
    opacity: .5
}

.about .container,
.methodology .container,
.team-section .container,
.privacy-section .container {
    position: relative;
    z-index: 1
}

/* Privacy Modal */
.privacy-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center
}

.privacy-modal.active {
    display: flex
}

.privacy-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .85);
    backdrop-filter: blur(8px)
}

.privacy-modal-content {
    position: relative;
    background: #0d0d0d;
    border: 1px solid rgba(212, 175, 55, .3);
    border-radius: 16px;
    max-width: 900px;
    max-height: 85vh;
    width: 90%;
    overflow-y: auto;
    padding: 3rem;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5)
}

.privacy-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    color: #f5f5f5;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center
}

.privacy-close:hover {
    background: rgba(212, 175, 55, .2);
    border-color: #D4AF37;
    transform: rotate(90deg)
}

.privacy-header {
    text-align: center;
    margin-bottom: 3rem
}

.privacy-body {
    max-width: 800px;
    margin: 0 auto
}

/* Scrollbar do Modal */
.privacy-modal-content::-webkit-scrollbar {
    width: 8px
}

.privacy-modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .05);
    border-radius: 4px
}

.privacy-modal-content::-webkit-scrollbar-thumb {
    background: #D4AF37;
    border-radius: 4px
}

.privacy-modal-content::-webkit-scrollbar-thumb:hover {
    background: #F4D03F
}

/* Responsive */
@media(max-width:768px) {
    .privacy-modal-content {
        width: 95%;
        max-height: 90vh;
        padding: 2rem 1.5rem
    }

    .privacy-close {
        top: 1rem;
        right: 1rem;
        width: 36px;
        height: 36px;
        font-size: 1rem
    }
}

/* Privacy Policy */
.privacy-section {
    background: #0a0a0a
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto
}

.privacy-item {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 12px;
    transition: all .3s
}

.privacy-item:hover {
    background: rgba(255, 255, 255, .04);
    border-color: rgba(212, 175, 55, .2)
}

.privacy-item h3 {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-size: 1.25rem
}

.privacy-item p {
    color: #999;
    line-height: 1.8
}

.privacy-contact {
    text-align: center;
    padding: 2rem;
    background: rgba(212, 175, 55, .05);
    border: 1px solid rgba(212, 175, 55, .2);
    border-radius: 12px;
    margin-top: 2rem
}

.privacy-contact p {
    color: #999;
    margin-bottom: .5rem
}

.privacy-contact a {
    color: #D4AF37;
    text-decoration: underline
}

.privacy-contact a:hover {
    color: #F4D03F
}

/* Flag Icons */
.lang-btn {
    padding: .5rem 1rem
}

.flag {
    font-size: 1.1em;
    margin-right: .35rem
}

.lang-divider {
    color: rgba(255, 255, 255, .2);
    margin: 0 .25rem
}

/* Responsive */
@media(max-width:768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem
    }

    .cookie-text {
        flex-direction: column;
        min-width: 100%
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column
    }

    .cookie-accept,
    .cookie-link {
        width: 100%
    }
}

/* Contact Form - Estados Animados */
.contact-form-wrapper {
    position: relative;
    min-height: 500px
}

.contact-form,
.success-message,
.error-message {
    transition: all .5s cubic-bezier(.4, 0, .2, 1)
}

/* Formulário - Estado Normal */
.contact-form {
    opacity: 1;
    transform: translateY(0);
    visibility: visible
}

.contact-form.form-hiding {
    opacity: 0;
    transform: translateY(-20px);
    visibility: hidden
}

/* Botão Submit - Loading State */
.btn-submit {
    position: relative;
    overflow: hidden
}

.btn-submit .btn-text,
.btn-submit .btn-loader {
    transition: opacity .3s, transform .3s
}

.btn-submit .btn-loader {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(13, 13, 13, .3);
    border-top-color: #0d0d0d;
    border-radius: 50%;
    animation: btnSpin 1s linear infinite
}

.btn-submit.loading .btn-text {
    opacity: 0;
    transform: scale(.8)
}

.btn-submit.loading .btn-loader {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1)
}

.btn-submit:disabled {
    opacity: .7;
    cursor: not-allowed
}

@keyframes btnSpin {
    to {
        transform: translate(-50%, -50%) rotate(360deg)
    }
}

/* Success Message */
.success-message {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(20px) scale(.95);
    visibility: hidden;
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(212, 175, 55, .3);
    border-radius: 16px
}

.success-message.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, .2), rgba(244, 208, 63, .2));
    border: 2px solid #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successPulse 1s ease-out
}

.success-icon i {
    font-size: 3rem;
    color: #D4AF37;
    animation: successCheck .6s ease-out .3s both
}

@keyframes successPulse {
    0% {
        transform: scale(0);
        opacity: 0
    }

    50% {
        transform: scale(1.1)
    }

    100% {
        transform: scale(1);
        opacity: 1
    }
}

@keyframes successCheck {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0
    }

    100% {
        transform: scale(1) rotate(0);
        opacity: 1
    }
}

.success-message h3 {
    color: #D4AF37;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif
}

.success-message p {
    color: #999;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto
}

.btn-new-message {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid #D4AF37;
    color: #D4AF37;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s
}

.btn-new-message:hover {
    background: #D4AF37;
    color: #0d0d0d;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, .3)
}

/* Error Message */
.error-message {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(20px) scale(.95);
    visibility: hidden;
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(220, 38, 38, .3);
    border-radius: 16px
}

.error-message.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible
}

.error-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: rgba(220, 38, 38, .1);
    border: 2px solid #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: errorShake .5s ease-out
}

.error-icon i {
    font-size: 3rem;
    color: #dc2626
}

@keyframes errorShake {

    0%,
    100% {
        transform: translateX(0)
    }

    25% {
        transform: translateX(-10px)
    }

    75% {
        transform: translateX(10px)
    }
}

.error-message h3 {
    color: #dc2626;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif
}

.error-message p {
    color: #999;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto
}

.btn-try-again {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid #dc2626;
    color: #dc2626;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s
}

.btn-try-again:hover {
    background: #dc2626;
    color: #fff;
    transform: translateY(-2px)
}

/* Responsive */
@media(max-width:768px) {

    .success-message,
    .error-message {
        padding: 3rem 1.5rem
    }

    .success-icon,
    .error-icon {
        width: 60px;
        height: 60px
    }

    .success-icon i,
    .error-icon i {
        font-size: 2rem
    }

    .success-message h3,
    .error-message h3 {
        font-size: 1.5rem
    }
}