/* RESET E BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f5f2ee;
    color: #111;
    max-width: 1920px;
    margin: 0 auto;
    overflow-x: hidden;
    line-height: 1.5;
}

/* TOPO */
.topbar {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(40px, 4vw, 80px);
    background: #000;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
}

.logo {
    font-size: clamp(16px, 1.5vw, 18px);
    letter-spacing: 2px;
    font-weight: 600;
}

.menu {
    display: flex;
    gap: clamp(24px, 2.5vw, 32px);
}

.menu a {
    color: #ccc;
    text-decoration: none;
    font-size: clamp(12px, 1vw, 14px);
    white-space: nowrap;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.menu a i {
    margin-right: 6px;
    width: 14px;
    opacity: 0.8;
}

.menu a.active,
.menu a:hover {
    color: #fff;
}

.menu a.active i,
.menu a:hover i {
    opacity: 1;
}

.btn-agendar {
    position: relative;
    z-index: 1;
    background: #c81f3b;
    border: none;
    padding: 12px 24px;
    color: #fff;
    text-decoration: none;
    font-size: clamp(11px, 0.8vw, 12px);
    letter-spacing: 1px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(200, 31, 59, 0.4);
    transition: all 0.3s;
    cursor: pointer;
    font-weight: 600;
}

.btn-agendar:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(200, 31, 59, 0.6);
}

/* VARIÁVEIS */
:root {
    --gold: #b8897b;
    --iconBorder: #e9e1d8;
}

/* LAYOUT PRINCIPAL - INVERTIDO */
.essence-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 140px);
    gap: clamp(60px, 6vw, 100px);
    padding: clamp(80px, 8vw, 120px) clamp(60px, 5vw, 100px);
    align-items: center;
}

/* TEXTO ESQUERDA */
.essence-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    padding-right: clamp(20px, 3vw, 40px);
    order: 1;
}

.section-label {
    font-size: clamp(10px, 0.8vw, 11px);
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 600;
}

.title {
    font-size: clamp(32px, 3.5vw, 42px);
    line-height: 1.2;
    margin-bottom: 32px;
    font-weight: 400;
    color: #111;
}

.title span {
    color: var(--gold);
    font-style: italic;
    font-weight: 300;
}

.description {
    font-size: clamp(13px, 1.1vw, 15px);
    color: #666;
    line-height: 1.75;
    margin-bottom: 20px;
}

/* STATS VERTICAIS - ÍCONES COM BORDA COMPLETA */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 48px;
    max-width: 520px;
}

.stat {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 22px;
    align-items: start;
    text-align: left;
}

.stat::before {
    content: '';
    width: 56px;
    height: 56px;
    background: #fff;
    
    /* BORDA COMPLETA 1px AO REDOR */
    border: 1px solid var(--iconBorder);
    
    /* FAIXA FINA DIREITA DOURADA */
    border-right: 1.5px solid var(--gold);
    
    border-radius: 0;
    box-shadow: 0 10px 26px rgba(0,0,0,0.08);
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* ÍCONE VAZADO DOURADO */
    font-size: 22px;
    color: transparent;
    -webkit-text-stroke: 1.6px var(--gold);
    text-stroke: 1.6px var(--gold);
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.stat:nth-child(1)::before { content: '\f007'; } /* user */
.stat:nth-child(2)::before { content: '\f5a2'; } /* medal */
.stat:nth-child(3)::before { content: '\f132'; } /* shield */
.stat:nth-child(4)::before { content: '\f06c'; } /* leaf */

.stat > div {
    display: flex;
    flex-direction: column;
}

.stat-number {
    display: block;
    font-size: clamp(16px, 1.3vw, 18px);
    font-weight: 700;
    color: #111;
    line-height: 1.3;
    margin-bottom: 8px;
}

.stat p {
    font-size: clamp(13px, 1.1vw, 14px);
    color: #666;
    line-height: 1.65;
    margin: 0;
    
    /* MAX 2 LINHAS */
    max-width: 440px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* IMAGEM DIREITA */
.essence-left {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    order: 2;
}

.image-container {
    position: relative;
    max-width: 650px;
    width: 100%;
}

.image-frame {
    position: relative;
    background: #fff;
    padding: 0;
    box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    bottom: 20px;
    left: 20px;
    border: 3px solid var(--gold);
    z-index: -1;
    pointer-events: none;
}

.oculos-grande {
    width: 100%;
    height: auto;
    display: block;
}

/* CAIXA PRETA 100% */
.caixa-preta {
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 320px;
    height: 160px;
    background: #000;
    padding: 20px 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    z-index: 2;
}

.caixa-texto {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.caixa-label {
    font-size: 13px;
    color: #fff;
    line-height: 1.4;
    opacity: 0.95;
}

/* RESPONSIVO */
@media (max-width: 1440px) {
    .essence-wrapper {
        padding: clamp(60px, 6vw, 100px) clamp(40px, 4vw, 80px);
    }
}

@media (max-width: 1024px) {
    .essence-wrapper {
        grid-template-columns: 1fr;
        padding: clamp(60px, 6vw, 80px) clamp(40px, 4vw, 60px);
        gap: clamp(48px, 5vw, 64px);
    }
    
    .essence-right { padding-right: 0; }
    
    .stats-grid {
        max-width: 420px;
        gap: 28px;
        margin: 40px auto 0;
    }
    
    .caixa-preta {
        width: 180px;
        bottom: -40px;
        left: -40px;
        padding: 16px 20px;
    }
    .caixa-texto { font-size: 24px; }
}

@media (max-width: 768px) {
    .topbar {
        height: auto;
        padding: 16px 20px;
        flex-direction: column;
        text-align: center;
    }
    .menu { flex-wrap: wrap; justify-content: center; order: 2; }
    .logo { order: 1; margin-top: 0; }
    .btn-agendar { order: 3; margin-top: 8px; }
    
    .essence-wrapper { padding: 48px 24px; gap: 40px; }
    
    .stats-grid { max-width: 340px; }
    .stat { 
        grid-template-columns: 54px 1fr; 
        gap: 16px; 
    }
    .stat::before {
        width: 48px;
        height: 48px;
        font-size: 20px;
        -webkit-text-stroke: 1.4px var(--gold);
    }
    .stat p { max-width: 260px; }
    
    .image-frame::before {
        top: -15px; right: -15px; bottom: 15px; left: 15px; border-width: 2px;
    }
    
    .caixa-preta {
        width: 160px; bottom: -35px; left: -35px; padding: 14px 18px;
    }
    .caixa-texto { font-size: 22px; }
}

@media (max-width: 480px) {
    .essence-wrapper { padding: 32px 20px; }
    
    .stats-grid { max-width: 280px; gap: 24px; margin-top: 32px; }
    
    .stat { grid-template-columns: 48px 1fr; gap: 14px; }
    .stat::before {
        width: 42px;
        height: 42px;
        font-size: 18px;
        -webkit-text-stroke: 1.2px var(--gold);
    }
    .stat p { max-width: 220px; }
    
    .image-frame::before {
        top: -10px; right: -10px; bottom: 10px; left: 10px;
    }
    
    .caixa-preta {
        width: 140px; bottom: -30px; left: -30px; padding: 12px 16px;
    }
    .caixa-texto { font-size: 20px; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #c81f3b; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #a81932; }
