:root {
    --primary-color: #0F172A;
    --accent-color: #C5A880;
    --bg-light: #F0F4F8;
    --text-main: #334155;
    --text-light: #94A3B8;
    --white: #FFFFFF;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.7;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
}

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

/* Glassmorphism no Header */
.glass-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
}

.glass-header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

nav a {
    text-decoration: none;
    color: var(--text-main);
    margin: 0 1.5rem;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.btn {
    padding: 0.8rem 2rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-outline {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.3);
}

.btn-primary:hover {
    background-color: #b5986e;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.hero {
    margin-top: 0;
    padding-top: 120px;
    background-image: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.6)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efeito Parallax */
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-left: 5%;
    padding-right: 5%;
}

.hero-content {
    max-width: 650px;
}

.hero h1 {
    color: var(--white);
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero p {
    color: #E2E8F0;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.trust-bar {
    background-color: var(--primary-color);
    padding: 3rem 5%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.trust-item {
    text-align: center;
    color: var(--white);
}

.trust-number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.trust-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-padding {
    padding: 6rem 0;
}

/* Elementos de Fundo para o Glassmorphism */
.relative-section {
    position: relative;
    overflow: hidden;
}

.relative-z {
    position: relative;
    z-index: 2;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
    opacity: 0.5;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: #e2e8f0;
    top: -100px;
    left: -100px;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: #d1d5db;
    bottom: -50px;
    right: -50px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

/* Glassmorphism nos Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 3rem 2rem;
    border-top: 4px solid var(--accent-color);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.6);
}

.glass-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.split-section {
    display: flex;
    align-items: center;
    padding: 0;
    background: var(--white);
}

.split-image {
    flex: 1;
    min-height: 600px;
    background-size: cover;
    background-position: center;
}

.split-content {
    flex: 1;
    padding: 6rem 5%;
}

.split-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

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

.blob-dark {
    width: 500px;
    height: 500px;
    background: rgba(197, 168, 128, 0.15); /* Dourado muito suave */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
}

.contact-container {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.contact-text {
    flex: 1;
}

.contact-text h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-text p {
    color: #cbd5e1;
}

/* Glassmorphism Escuro no Formulário */
.glass-dark {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: #e2e8f0;
}

/* Inputs adaptados para o tema de vidro */
.glass-input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    color: var(--white);
    outline: none;
    transition: all 0.3s;
}

.glass-input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
}

.feedback-msg {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(22, 101, 52, 0.2);
    color: #bbf7d0;
    border: 1px solid rgba(187, 247, 208, 0.3);
    border-radius: 6px;
    text-align: center;
    font-size: 0.9rem;
}

.hidden {
    display: none;
}

footer {
    background-color: #080C17;
    color: var(--text-light);
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
}

/* Classes de Animação JS (Intersection Observer) */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

@media (max-width: 900px) {
    .split-section { flex-direction: column; }
    .split-image { width: 100%; min-height: 400px; }
    .contact-container { flex-direction: column; }
    .blob { display: none; } /* Oculta formas no mobile para melhor performance */
}

@media (max-width: 768px) {
    .glass-header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 5%;
        background: rgba(255, 255, 255, 0.95);
    }
    .hero { min-height: 80vh; }
    .hero h1 { font-size: 2.2rem; }
    nav a { margin: 0 0.5rem; }
}