/* Reset & Base Variables */
:root {
    --color-black: #050505;
    --color-dark: #121212;
    --color-gray-dark: #222222;
    --color-gray: #888888;
    --color-white: #f5f5f5;
    --color-gold: #d4af37;
    --color-gold-hover: #b8962c;
    --color-brown: #8b5a2b;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: #cccccc;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 100px 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--color-gold);
}

.section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition-smooth);
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold), var(--color-brown));
    color: var(--color-black);
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #e6c55c, var(--color-brown));
}

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

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-white);
    display: flex;
    align-items: center;
}

.logo-img {
    height: 100px;
    width: auto;
}

.logo span {
    color: var(--color-gold);
    font-weight: 500;
    font-size: 1.2rem;
    margin-left: 5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.nav-links a:not(.btn):hover {
    color: var(--color-gold);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    background-image: url('hero_midrise_1780682336473.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Final do nascer do sol: bem mais claro e com um toque de luz do dia/amarelo */
    background: linear-gradient(to right, rgba(18, 24, 18, 0.55) 0%, rgba(255, 215, 120, 0.1) 100%);
    z-index: 1;
}

.hero-night-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #020302;
    z-index: 1;
    pointer-events: none;
    animation: sunrise-effect 6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes sunrise-effect {
    0% { opacity: 0.95; }
    20% { opacity: 0.85; }
    100% { opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
}

/* SC Advantage Cards */
.card {
    background: var(--color-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.5rem;
    color: var(--color-white);
}

/* Financial Superiority */
.dark-section {
    background-color: var(--color-dark);
    border-top: 1px solid rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.02);
}

.chart-container {
    background: var(--color-black);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 40px;
}

.chart-bar {
    margin-bottom: 25px;
}

.chart-bar:last-child {
    margin-bottom: 0;
}

.bar-label {
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}

.bar-fill {
    height: 12px;
    background: var(--color-gray-dark);
    border-radius: 6px;
    position: relative;
}

.gold-fill {
    background: linear-gradient(90deg, var(--color-brown), var(--color-gold));
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.bar-value {
    text-align: right;
    font-size: 0.85rem;
    margin-top: 5px;
    color: var(--color-gray);
}

.chart-bar.highlight .bar-label {
    color: var(--color-gold);
}
.chart-bar.highlight .bar-value {
    color: var(--color-gold);
    font-weight: 600;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.metric {
    border-left: 2px solid var(--color-gold);
    padding-left: 20px;
}

.metric h4 {
    font-size: 1.8rem;
    color: var(--color-white);
    margin-bottom: 10px;
}

/* The Method */
.method-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.method-list {
    list-style: none;
    margin-top: 30px;
}

.method-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.method-image .img-placeholder {
    width: 100%;
    height: 500px;
    background-color: var(--color-gray-dark);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.bg-aurea-strategy {
    background-image: url('strategy_midrise_1780682353869.png');
    background-size: cover;
    background-position: center;
}


/* Lead Capture */
.cta-section {
    background: linear-gradient(135deg, rgba(139, 90, 43, 0.1), rgba(0, 0, 0, 0.9)), url('data:image/svg+xml;utf8,<svg opacity="0.05" width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="2" fill="%23d4af37"/></svg>');
}

.cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-text h2 {
    font-size: 3rem;
}

.cta-form {
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #cccccc;
}

.form-group input {
    width: 100%;
    padding: 15px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--color-white);
    border-radius: 4px;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(0,0,0,0.8);
}

/* Footer */
.footer {
    background: var(--color-black);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 160px;
    margin-bottom: 15px;
}
.footer-logo span { color: var(--color-gold); }

.disclaimer {
    font-size: 0.75rem;
    color: var(--color-gray);
    margin-top: 20px;
}

/* WhatsApp Floating Button */
.whatsapp-container {
    position: fixed;
    bottom: 30px;
    right: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 140px;
}

.whatsapp-btn {
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    animation: pulse-whatsapp 2s infinite;
    text-decoration: none;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn svg {
    width: 35px;
    height: 35px;
    fill: currentColor;
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

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

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

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

/* Responsive */
@media (max-width: 992px) {
    .hero-title { font-size: 3rem; }
    .method-container, .cta-container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-title { font-size: 2.5rem; }
    .metrics-grid { grid-template-columns: 1fr; }
    .section { padding: 60px 0; }
    
    .whatsapp-container {
        bottom: 40px;
        right: 15px;
    }
}
