:root {
    --creme: #FAF6EE;
    --latao: #FFB733;
    --oxblood: #5E1A1A;
    --ardosia: #2D3139;
    --preto: #050505;
    --preto-profundo: #050201;
    --vermelho-destaque: #FF4500;
    
    /* Luxury Fiery Orange Palette (Identical to Reference Image) */
    --laranja-brilho: #FF6600;
    --laranja-profundo: #802000;
    --laranja-neon: #FF8800;
    --laranja-chama: #FF3300;
    --laranja-ouro: #FFB300;
    --laranja-sol: #FF5500;
    --laranja-luz: #FFAA33;
    
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 102, 0, 0.28); /* Glowing orange subtle border */
    --card-bg: rgba(18, 9, 4, 0.75); /* Deep dark warm amber tint */
    
    --transition-smooth: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s ease-out;
}

body {
    background-color: var(--preto-profundo);
    /* Deep luxury glowing orange atmosphere on body background */
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(128, 32, 0, 0.28) 0%, transparent 55%),
        radial-gradient(circle at 85% 30%, rgba(255, 102, 0, 0.16) 0%, transparent 55%),
        radial-gradient(circle at 50% 90%, rgba(255, 51, 0, 0.12) 0%, transparent 60%);
    background-attachment: fixed;
    color: var(--creme);
    font-family: 'Geist', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
    cursor: none;
}

/* Typography Hierarchy */
h1, h2, h3, h4, .serif {
    font-family: 'Fraunces', serif;
    font-weight: 300;
}

/* Hero Section with Vibrant Fiery Orange Frosted Glass Effect */
.hero {
    min-height: 85vh;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-glow-container {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: var(--preto-profundo);
}

/* Automatic Ambient Orange Lantern / Spotlight Effect Sweeping the Site Background */
.ambient-lantern {
    position: fixed;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.28) 0%, rgba(128, 32, 0, 0.14) 45%, transparent 75%);
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
    animation: lanternSweep 22s infinite ease-in-out alternate;
}

@keyframes lanternSweep {
    0% {
        top: 5%;
        left: -15%;
        transform: scale(0.9);
    }
    25% {
        top: 35%;
        left: 75%;
        transform: scale(1.35);
    }
    50% {
        top: 65%;
        left: 15%;
        transform: scale(1.0);
    }
    75% {
        top: 85%;
        left: 80%;
        transform: scale(1.25);
    }
    100% {
        top: 15%;
        left: 45%;
        transform: scale(1.1);
    }
}

.hero-glow-orb {
    position: absolute;
    width: 65vw;
    height: 65vw;
    max-width: 650px;
    max-height: 650px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--laranja-brilho) 0%, var(--laranja-profundo) 45%, transparent 75%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: left 0.8s cubic-bezier(0.16, 1, 0.3, 1), top 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    animation: orbPulse 4s infinite alternate;
    opacity: 0.75;
    filter: blur(40px);
}

@keyframes orbPulse {
    0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.55; }
    100% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.85; }
}

.hero-content-glass {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    backdrop-filter: blur(90px);
    -webkit-backdrop-filter: blur(90px);
    background: rgba(5, 2, 1, 0.55);
}

/* Orange Atmosphere Halo at the bottom of Hero (Matching Reference Image) */
.hero-content-glass::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: radial-gradient(ellipse at 50% 100%, rgba(255, 102, 0, 0.6) 0%, rgba(255, 51, 0, 0.25) 50%, transparent 80%);
    pointer-events: none;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(3.8rem, 11vw, 8rem);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #FFF0E5 25%, var(--laranja-neon) 70%, var(--laranja-brilho) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 35px rgba(255, 102, 0, 0.55));
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1.2s 0.2s forwards cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 2;
}

.hero .lead {
    font-size: clamp(1.2rem, 2.2vw, 1.75rem);
    line-height: 1.35;
    color: rgba(250, 246, 238, 0.9);
    font-style: italic;
    font-family: 'Fraunces', serif;
    max-width: 90ch;
    margin: 0 auto;
    opacity: 0;
    animation: fadeUp 1.2s 0.4s forwards cubic-bezier(0.16, 1, 0.3, 1);
    text-shadow: 0 0 15px rgba(255, 102, 0, 0.3);
    position: relative;
    z-index: 2;
}

.hero .lead .lead-line {
    display: block;
    margin: 0;
    padding: 0;
}

.hero .lead .lead-line:last-child {
    margin-bottom: 0;
}

/* Luxury Grid Section */
.manifesto-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 10;
}

.luxury-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2.5rem;
}

.luxury-card {
    background: 
        radial-gradient(circle at 10% 10%, rgba(255, 102, 0, 0.22) 0%, transparent 45%),
        radial-gradient(circle at 90% 90%, rgba(255, 51, 0, 0.15) 0%, transparent 45%),
        var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    transition: var(--transition-smooth);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s 0.6s forwards cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 102, 0, 0.12);
}

/* Glowing Orange Border & Lighted Corners Effect (Lights Turned On!) */
.luxury-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1.5px;
    background: linear-gradient(135deg, var(--laranja-brilho), rgba(255, 179, 0, 0.4), var(--laranja-sol));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.55;
    transition: opacity 0.7s ease, box-shadow 0.7s ease;
    pointer-events: none;
}

/* Corner Light Spot Highlights inside Cards (As seen in reference image) */
.luxury-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.5) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(15px);
    pointer-events: none;
    transition: transform 0.6s ease, opacity 0.6s ease;
    opacity: 0.8;
}

.luxury-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(255, 85, 0, 0.35), 0 0 35px rgba(255, 102, 0, 0.25) inset;
    background: 
        radial-gradient(circle at 10% 10%, rgba(255, 102, 0, 0.35) 0%, transparent 50%),
        radial-gradient(circle at 90% 90%, rgba(255, 51, 0, 0.25) 0%, transparent 50%),
        rgba(28, 12, 5, 0.85);
}

.luxury-card:hover::after {
    opacity: 1;
    box-shadow: 0 0 25px rgba(255, 102, 0, 0.7);
}

.luxury-card:hover::before {
    transform: scale(1.4);
    opacity: 1;
}

/* Icons */
.card-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 2rem;
    border-radius: 14px;
    background: rgba(255, 102, 0, 0.1);
    border: 1px solid rgba(255, 102, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.25);
    transition: var(--transition-smooth);
}

.luxury-card:hover .card-icon, .eco-card:hover .card-icon {
    background: rgba(255, 102, 0, 0.22);
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.65);
    border-color: rgba(255, 136, 0, 0.7);
    transform: scale(1.08);
}

.card-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--laranja-neon);
    stroke-width: 1.5;
    fill: none;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 0 6px rgba(255, 136, 0, 0.6));
}

.luxury-card:hover .card-icon svg, .eco-card:hover .card-icon svg {
    stroke: #ffffff;
    filter: drop-shadow(0 0 12px var(--laranja-brilho));
}

/* Author Avatar in Ecosystem Footer Card */
.author-avatar-wrap {
    width: 90px;
    height: 90px;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, var(--laranja-neon), var(--laranja-sol));
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.55);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
}

.author-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.eco-card:hover .author-avatar-wrap {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(255, 102, 0, 0.85);
}

.author-bio-text {
    font-family: 'Cormorant Garamond', 'Fraunces', serif !important;
    font-style: italic !important;
    font-size: 1.35rem !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    color: rgba(250, 246, 238, 0.95) !important;
    max-width: 650px;
    margin: 0 auto;
    letter-spacing: 0.02em;
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.2);
}

/* Grid Cell Sizing */
.col-full { grid-column: span 12; }
.col-half { grid-column: span 6; }
.col-large { grid-column: span 8; }
.col-small { grid-column: span 4; }

.luxury-card h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    background: linear-gradient(135deg, #ffffff 0%, var(--creme) 30%, var(--laranja-neon) 80%, var(--laranja-brilho) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    margin-top: 0;
    letter-spacing: -0.01em;
    filter: drop-shadow(0 0 12px rgba(255, 102, 0, 0.3));
}

.luxury-card p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(250, 246, 238, 0.88);
    margin-bottom: 1.5rem;
}

.luxury-card p:last-child {
    margin-bottom: 0;
}

/* Pull Quotes */
.pull-quote {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.3;
    text-align: center;
    margin: 6rem auto;
    max-width: 1000px;
    padding: 0 2rem;
    position: relative;
    opacity: 0;
    animation: fadeUp 1s 0.8s forwards cubic-bezier(0.16, 1, 0.3, 1);
    transition: var(--transition-smooth);
    cursor: default;
}

.pull-quote .word {
    display: inline-block;
    opacity: 0.15;
    filter: blur(6px);
    transform: translateY(14px) scale(0.96);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), 
                filter 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                color 0.4s ease,
                text-shadow 0.4s ease;
    color: var(--creme);
    margin: 0 0.15em;
    will-change: opacity, transform, filter;
}

.pull-quote .word.revealed {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
    background: linear-gradient(135deg, #ffffff 0%, var(--creme) 30%, var(--laranja-luz) 70%, var(--laranja-brilho) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 18px rgba(255, 102, 0, 0.4));
}

@media (hover: hover) and (pointer: fine) {
    .pull-quote .word.revealed:hover {
        transform: translateY(-5px) scale(1.14);
        background: none;
        -webkit-background-clip: unset;
        -webkit-text-fill-color: #ffffff;
        color: #ffffff;
        text-shadow: 0 0 20px #FF6600, 0 0 45px #FF9900, 0 0 60px #FF3300;
        z-index: 10;
        position: relative;
    }
}

.pull-quote::before, .pull-quote::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--laranja-brilho), transparent);
    transition: var(--transition-smooth);
}

.pull-quote::before {
    top: -80px;
}

.pull-quote::after {
    bottom: -80px;
    background: linear-gradient(to top, var(--laranja-brilho), transparent);
}

.pull-quote:hover::before {
    height: 75px;
    top: -95px;
    background: linear-gradient(to bottom, var(--laranja-neon), transparent);
    box-shadow: 0 0 20px var(--laranja-neon);
}

.pull-quote:hover::after {
    height: 75px;
    bottom: -95px;
    background: linear-gradient(to top, var(--laranja-neon), transparent);
    box-shadow: 0 0 20px var(--laranja-neon);
}

/* Ecosystem Integration (Color Reveal / Hover Filter) */
.ecosystem-section {
    margin-top: 8rem;
    border-top: 1px solid rgba(255, 102, 0, 0.2);
    padding-top: 6rem;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, var(--creme) 30%, var(--laranja-neon) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4rem;
    filter: drop-shadow(0 0 15px rgba(255, 102, 0, 0.4));
}

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

.eco-card {
    background: 
        radial-gradient(circle at 90% 10%, rgba(255, 102, 0, 0.15) 0%, transparent 50%),
        var(--preto-profundo);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    
    /* Base State: Desaturated Amber Glow */
    filter: brightness(0.9);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.eco-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 100%, rgba(255, 102, 0, 0.25), transparent 70%);
    opacity: 0.4;
    transition: var(--transition-smooth);
    z-index: 1;
}

.eco-card:hover, .eco-card:focus {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--laranja-brilho);
    box-shadow: 0 20px 45px rgba(255, 102, 0, 0.35), 0 0 25px rgba(255, 102, 0, 0.2) inset;
    
    /* Active State: Color Reveal! */
    filter: brightness(1.15);
    outline: none;
}

.eco-card:hover::before, .eco-card:focus::before {
    opacity: 1;
}

.eco-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.8rem;
    color: var(--creme);
    margin: 0 0 1rem 0;
    position: relative;
    z-index: 2;
    transition: color 0.4s;
}

.eco-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(250, 246, 238, 0.75);
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Top Brand Navigation - Matching Main Site Header Style */
.breadcrumb {
    position: absolute;
    top: 2.2rem;
    left: 2.2rem;
    z-index: 100;
    display: flex;
    align-items: center;
}

.brand-logo-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    padding-bottom: 4px;
    border-bottom: 2px solid var(--vermelho-destaque);
    transition: var(--transition-smooth);
    position: relative;
}

.brand-logo-btn .brand-text {
    font-family: 'Fraunces', serif;
    font-weight: 900;
    font-size: 1.35rem;
    letter-spacing: 0.08em;
    color: var(--creme);
    text-transform: uppercase;
}

.brand-logo-btn .brand-badge {
    font-family: 'Geist', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    background: var(--vermelho-destaque);
    color: #ffffff;
    padding: 2px 7px;
    margin-left: 5px;
    border-radius: 2px;
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
}

.brand-logo-btn:hover {
    border-bottom-color: var(--laranja-brilho);
    transform: translateY(-2px);
    filter: drop-shadow(0 0 15px rgba(255, 102, 0, 0.6));
}

.brand-logo-btn:hover .brand-badge {
    background: var(--laranja-brilho);
    color: #ffffff;
}

/* Custom Cursor Variables */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 45px;
    height: 45px;
    border: 1.5px solid var(--laranja-brilho);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
}

.custom-cursor.hover {
    width: 70px;
    height: 70px;
    background-color: var(--laranja-brilho);
    border-color: transparent;
    mix-blend-mode: exclusion;
}

.custom-cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: var(--laranja-neon);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.luxury-card.first-card {
    position: relative;
    background-image: linear-gradient(135deg, rgba(128, 32, 0, 0.85), rgba(20, 9, 4, 0.92)), url('https://cdn.pombagiras.com/LogG%20(2).png');
    background-size: cover;
    background-position: center;
    border-color: rgba(255, 102, 0, 0.5);
    box-shadow: 0 15px 50px rgba(255, 85, 0, 0.45);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    transition: var(--transition-smooth);
}

.luxury-card.first-card:hover {
    transform: translateY(-8px) scale(1.01);
    background-image: linear-gradient(135deg, rgba(255, 102, 0, 0.65), rgba(128, 32, 0, 0.9)), url('https://cdn.pombagiras.com/LogG%20(2).png');
    border-color: var(--laranja-neon);
    box-shadow: 0 25px 70px rgba(255, 102, 0, 0.65), 0 0 35px rgba(255, 102, 0, 0.35) inset;
    filter: brightness(1.15);
}

/* Premium Mobile Optimization & High-Contrast Fiery Emphasis */
@media (max-width: 1024px) {
    .col-half, .col-large, .col-small { grid-column: span 12; }
    .luxury-card { padding: 2.75rem 2rem; }
}

@media (max-width: 768px) {
    /* Mobile Hero: Strong emphasis on vibrant orange glow atmosphere */
    .hero-glow-container {
        background-color: var(--preto-profundo);
    }

    .hero-glow-orb {
        width: 90vw;
        height: 90vw;
        max-width: 450px;
        max-height: 450px;
        opacity: 0.9;
        filter: blur(30px);
    }
    
    .breadcrumb {
        position: relative;
        top: 0;
        left: 0;
        text-align: center;
        padding: 1.5rem 1rem 0.5rem;
        display: flex;
        justify-content: center;
        z-index: 10;
    }
    
    .hero {
        min-height: 70vh;
    }
    
    .hero-content-glass {
        padding: 2.5rem 1.25rem 4rem;
        min-height: 70vh;
        background: rgba(5, 2, 1, 0.65);
    }

    .hero h1 {
        font-size: clamp(2.8rem, 10vw, 4.5rem);
        margin-bottom: 1rem;
        filter: drop-shadow(0 0 25px rgba(255, 102, 0, 0.7));
    }

    .hero .lead {
        font-size: clamp(0.95rem, 3.6vw, 1.18rem);
        line-height: 1.35;
        font-weight: 400;
        color: #FFF6EE;
        text-shadow: 0 0 18px rgba(255, 120, 0, 0.45), 0 2px 8px rgba(0, 0, 0, 0.8);
        padding: 0 0.25rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .hero .lead .lead-line {
        display: block;
        margin: 0;
        padding: 0;
        width: 100%;
    }
    
    .hero .lead .lead-line:last-child {
        margin-bottom: 0;
    }

    .manifesto-container {
        padding: 1.5rem 1rem;
    }
    
    .luxury-grid {
        gap: 1.75rem;
    }
    
    .luxury-card {
        padding: 2.25rem 1.5rem;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 102, 0, 0.2);
    }

    .luxury-card::after {
        opacity: 0.75; /* Lights on by default on mobile! */
    }

    .pull-quote {
        font-size: 1.75rem;
        margin: 4rem auto;
        padding: 0 1rem;
    }
    
    .pull-quote::before, .pull-quote::after {
        height: 40px;
    }
    
    .pull-quote::before { top: -60px; }
    .pull-quote::after { bottom: -60px; }

    .ecosystem-section {
        margin-top: 5rem;
        padding-top: 4rem;
    }

    .section-title {
        font-size: 2.25rem;
        margin-bottom: 2.5rem;
    }
    
    .ecosystem-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .eco-card {
        padding: 1.85rem;
        filter: brightness(1.05);
        border-color: rgba(255, 102, 0, 0.4);
    }
    
    /* Disable Custom Cursor on Touch */
    body { cursor: auto; }
    .custom-cursor, .custom-cursor-dot { display: none !important; }
}
