/* 
   CAIXA PRETA - Premium Agency Landing Page
   Color Palette: Deep Black, Charcoal, Brushed Gold & Metallic Silver
   Typography: Outfit (Modern Sans) & Cinzel (Luxury Serif)
*/

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800;900&family=Outfit:wght@200;300;400;500;600;700;800&display=swap');

/* --- CUSTOM VARIABLES --- */
:root {
    --bg-dark: #050506;
    --bg-darker: #020202;
    --bg-card: rgba(15, 15, 18, 0.65);
    --bg-card-hover: rgba(22, 22, 26, 0.85);
    
    /* Gold Palette */
    --gold-primary: #D4AF37;
    --gold-light: #F5E0A3;
    --gold-dark: #9A7B1C;
    --gold-gradient: linear-gradient(135deg, #FFF1C5 0%, #D4AF37 50%, #AA771C 100%);
    --gold-glow: rgba(212, 175, 55, 0.25);
    --gold-glow-strong: rgba(212, 175, 55, 0.5);
    
    /* Silver Palette */
    --silver-primary: #C0C0C0;
    --silver-light: #F0F0F0;
    --silver-dark: #7A7A7A;
    --silver-gradient: linear-gradient(135deg, #FFFFFF 0%, #C0C0C0 50%, #686868 100%);

    /* Text Colors */
    --text-white: #FFFFFF;
    --text-light: #E0E0E3;
    --text-muted: #8E8E93;
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-luxury: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Animation & Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    
    --border-radius-lg: 20px;
    --border-radius-md: 12px;
    --border-radius-sm: 8px;
    --border-color: rgba(212, 175, 55, 0.12);
    --border-color-hover: rgba(212, 175, 55, 0.3);
}

/* --- RESET & BASE STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    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;
    position: relative;
}

/* Background Grid Overlay */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.007) 1px, transparent 1px), 
        linear-gradient(90deg, rgba(255, 255, 255, 0.007) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

/* Background Glowing Lights (Spotlights matching the image) */
.spotlight-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    top: -200px;
    left: -100px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
    z-index: 0;
}

.spotlight-2 {
    position: absolute;
    width: 700px;
    height: 700px;
    top: 20%;
    right: -200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
    z-index: 0;
}

.spotlight-3 {
    position: absolute;
    width: 800px;
    height: 800px;
    bottom: -100px;
    left: 10%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
    z-index: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* --- TYPOGRAPHY & GRADIENTS --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text-white);
}

.title-luxury {
    font-family: var(--font-luxury);
    text-transform: uppercase;
}

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

.text-silver {
    background: var(--silver-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-glow-gold {
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.45);
}

.tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--gold-light);
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.05);
    margin-bottom: 24px;
    animation: pulseGlow 3s infinite ease-in-out;
}

/* --- BUTTONS & INTERACTIVE ELEMENTS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--bg-darker);
    border: none;
    box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: none;
}

.btn-primary:hover::before {
    left: 150%;
    transition: 0.8s ease-in-out;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--gold-glow-strong);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.05);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--text-white);
    border: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

/* --- HEADER --- */
header {
    height: 90px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    z-index: 10;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-luxury);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1;
}

.logo-sub {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--text-muted);
    margin-top: 4px;
}

.header-date {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
}

.header-date i {
    color: var(--gold-primary);
}

/* --- HERO SECTION --- */
.hero {
    padding: 60px 0 100px 0;
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
}

.hero-title {
    font-size: 2.8rem;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-title span {
    display: block;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 580px;
}

/* Countdown Timer */
.countdown-container {
    margin-bottom: 40px;
}

.countdown-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold-light);
    margin-bottom: 12px;
    font-weight: 700;
}

.countdown {
    display: flex;
    gap: 15px;
}

.countdown-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    width: 85px;
    height: 90px;
    border-radius: var(--border-radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

.countdown-item:hover {
    border-color: var(--border-color-hover);
    box-shadow: 0 8px 32px var(--gold-glow);
    transform: translateY(-2px);
}

.countdown-val {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    font-family: var(--font-heading);
}

.countdown-unit {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-top: 6px;
    font-weight: 500;
}

/* Waitlist Form Card */
.waitlist-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    max-width: 520px;
    position: relative;
    overflow: hidden;
}

.waitlist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
}

.waitlist-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.waitlist-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

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

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px 18px;
    font-size: 0.95rem;
    color: var(--text-white);
    border-radius: var(--border-radius-md);
    transition: var(--transition-normal);
}

.form-input:focus {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.02);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-btn {
    width: 100%;
    margin-top: 10px;
}

.success-message {
    display: none;
    text-align: center;
    padding: 10px 0;
}

.success-icon {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.success-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.success-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Hero Visual / Image container */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-glow-bg {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(0,0,0,0) 65%);
    pointer-events: none;
    z-index: 1;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    animation: float 6s infinite ease-in-out;
}

.hero-image {
    max-width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: var(--transition-slow);
}

.hero-image:hover {
    transform: scale(1.02);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.7),
        0 0 50px rgba(212, 175, 55, 0.25);
}

/* --- PILLARS SECTION --- */
.pillars-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

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

.section-subtitle {
    font-size: 0.9rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
}

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

.pillar-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-normal);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: var(--transition-normal);
}

.pillar-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-color-hover);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.08);
}

.pillar-card:hover::before {
    opacity: 1;
}

.pillar-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    font-size: 1.6rem;
    color: var(--gold-primary);
    transition: var(--transition-normal);
}

.pillar-card:hover .pillar-icon {
    background: var(--gold-gradient);
    color: var(--bg-darker);
    border-color: transparent;
    box-shadow: 0 0 20px var(--gold-glow);
    transform: scale(1.1);
}

.pillar-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.pillar-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- MANIFESTO SECTION (CAIXA PRETA DETAILS) --- */
.manifesto-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.manifesto-wrapper {
    background: radial-gradient(circle at center, rgba(18, 18, 22, 0.95) 0%, rgba(5, 5, 6, 0.99) 100%);
    border: 1px solid var(--border-color);
    padding: 80px 60px;
    border-radius: 30px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    z-index: 2;
    text-align: center;
}

.manifesto-wrapper::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.manifesto-logo {
    font-family: var(--font-luxury);
    font-size: 2.2rem;
    letter-spacing: 0.15em;
    font-weight: 800;
    margin-bottom: 8px;
}

.manifesto-sublogo {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.4em;
    color: var(--gold-primary);
    text-transform: uppercase;
    margin-bottom: 40px;
    font-weight: 700;
}

.manifesto-text {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 35px auto;
    letter-spacing: 0.01em;
}

.manifesto-text strong {
    font-weight: 700;
    color: var(--text-white);
}

.manifesto-highlight {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin: 40px 0;
}

.manifesto-ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* --- WHATSAPP FLOATING WIDGET --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 18px 8px 8px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    border-color: rgba(37, 211, 102, 0.3);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.2);
}

.whatsapp-icon-circle {
    width: 44px;
    height: 44px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-text-wrapper {
    display: flex;
    flex-direction: column;
}

.whatsapp-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.whatsapp-num {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-white);
}

/* --- FOOTER --- */
footer {
    background: #020203;
    padding: 60px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    text-align: center;
}

.footer-logo {
    font-family: var(--font-luxury);
    font-size: 1.6rem;
    letter-spacing: 0.15em;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--gold-primary);
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 30px;
}

/* --- KEYFRAMES --- */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.05);
        border-color: rgba(212, 175, 55, 0.2);
    }
    50% {
        box-shadow: 0 0 25px rgba(212, 175, 55, 0.15);
        border-color: rgba(212, 175, 55, 0.4);
    }
    100% {
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.05);
        border-color: rgba(212, 175, 55, 0.2);
    }
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .countdown {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        max-width: 450px;
        width: 100%;
        margin: 0 auto;
    }
    
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 0 80px 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    /* Responsive Countdown Grid to avoid overflow on narrow screens */
    .countdown {
        gap: 10px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .countdown-item {
        flex: 1;
        width: auto;
        height: 75px;
    }
    
    .countdown-val {
        font-size: 1.6rem;
    }
    
    .countdown-unit {
        font-size: 0.55rem;
        margin-top: 2px;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .manifesto-wrapper {
        padding: 50px 30px;
    }
    
    .manifesto-text {
        font-size: 1.15rem;
    }
    
    .manifesto-highlight {
        font-size: 1.4rem;
    }
    
    .manifesto-ctas {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .manifesto-ctas .btn {
        width: 100%;
        max-width: 320px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 6px;
    }
    
    .whatsapp-text-wrapper {
        display: none; /* Icon-only on mobile to avoid covering content */
    }
}

@media (max-width: 480px) {
    header {
        height: auto;
        padding: 15px 0;
    }
    
    .nav-wrapper {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-desc {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .manifesto-logo {
        font-size: 1.8rem;
    }
    
    .manifesto-sublogo {
        font-size: 0.75rem;
        letter-spacing: 0.25em;
    }
}

