@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

/* =================================================================== */
/* 1. VARIÁVEIS E TEMAS (Apple + Ubuntu)                               */
/* =================================================================== */
:root {
    --ubuntu-orange: #E95420;
    --ubuntu-purple: #772953;
    --apple-gray-bg: #F5F5F7;
    --apple-card-bg: #FFFFFF;
    --apple-text-main: #1D1D1F;
    --apple-text-sec: #86868B;
    
    --footer-bg: #FFFFFF;
    --footer-text: #86868B;
    
    /* Variáveis para Botões - Ajuste de Hover e Dark Mode */
    --btn-bg: #1D1D1F;
    --btn-text: #FFFFFF;
    --btn-hover-bg: #333336;
    --btn-hover-text: #FFFFFF;

    --brand-gradient: linear-gradient(135deg, #E95420 0%, #772953 100%);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Ubuntu', sans-serif;
    
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-float: 0 20px 40px rgba(0,0,0,0.12);
    
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: 1px solid rgba(255, 255, 255, 0.6);
    --glass-blur: blur(20px);
}

[data-bs-theme="dark"] {
    --apple-gray-bg: #000000;
    --apple-card-bg: #1C1C1E;
    --apple-text-main: #F5F5F7;
    --apple-text-sec: #A1A1A6;
    
    --footer-bg: #1C1C1E;
    --footer-text: #A1A1A6;
    
    /* No dark, o botão "preto" vira branco para contraste */
    --btn-bg: #FFFFFF;
    --btn-text: #000000;
    --btn-hover-bg: #E5E5EA;
    --btn-hover-text: #000000;
    
    --glass-bg: rgba(28, 28, 30, 0.75);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.3);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.4);
}

/* =================================================================== */
/* 2. BASE & TIPOGRAFIA                                                */
/* =================================================================== */
body {
    font-family: var(--font-primary);
    background-color: var(--apple-gray-bg);
    color: var(--apple-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a { text-decoration: none; color: inherit; transition: color 0.2s; }

.text-gradient {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* =================================================================== */
/* 3. NAVBAR "FROSTED GLASS"                                           */
/* =================================================================== */
.navbar-custom {
    background: var(--glass-bg) !important;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: var(--glass-border);
    padding: 0.8rem 0;
    z-index: 1030;
    transition: all 0.3s ease;
}
.navbar-brand { font-size: 1.5rem; font-weight: 700; color: var(--apple-text-main) !important; }
.navbar-custom .nav-link {
    color: var(--apple-text-sec) !important;
    font-weight: 500; padding: 0.5rem 1rem; border-radius: 20px;
    transition: all 0.3s;
}
.navbar-custom .nav-link:hover, .navbar-custom .nav-link.active {
    color: var(--apple-text-main) !important;
    background-color: rgba(128, 128, 128, 0.1);
}
.navbar-custom .form-control {
    background-color: rgba(128, 128, 128, 0.1);
    border: none; border-radius: 20px; padding-left: 1rem; color: var(--apple-text-main);
}
.btn-nav-icon {
    color: var(--apple-text-main);
    border-radius: 50%; width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s;
}
.btn-nav-icon:hover {
    background-color: rgba(128, 128, 128, 0.15); color: var(--ubuntu-orange);
}

/* =================================================================== */
/* 4. HERO SECTION                                                     */
/* =================================================================== */
.hero-section {
    position: relative;
    padding: 9rem 0 6rem 0;
    background: radial-gradient(circle at 50% 0%, rgba(233, 84, 32, 0.15), transparent 60%);
    text-align: center; overflow: hidden;
}
.hero-title { font-size: 3.5rem; line-height: 1.1; margin-bottom: 1.5rem; }
.hero-subtitle {
    font-size: 1.25rem; color: var(--apple-text-sec);
    max-width: 700px; margin: 0 auto 2.5rem auto; font-weight: 400;
}
.profile-img-container {
    position: relative; display: inline-block; margin-bottom: 2rem;
}
.profile-img {
    width: 120px; height: 120px; border-radius: 50%; object-fit: cover;
    box-shadow: 0 10px 40px rgba(233, 84, 32, 0.3);
}

/* CORREÇÃO DOS BOTÕES NO DARK MODE E HOVER */
.btn-apple {
    background: var(--btn-bg);
    color: var(--btn-text);
    border-radius: 30px; padding: 0.8rem 2rem; font-weight: 600; border: none;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
}
.btn-apple:hover {
    transform: scale(1.02); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.15); 
    background-color: var(--btn-hover-bg);
    color: var(--btn-hover-text); /* Garante que o texto não suma */
}

.btn-apple-outline {
    background: transparent; color: var(--apple-text-main);
    border: 1px solid var(--apple-text-main); border-radius: 30px;
    padding: 0.8rem 2rem; font-weight: 600; transition: all 0.2s;
}
.btn-apple-outline:hover {
    background: rgba(128,128,128,0.1); 
    transform: scale(1.02);
    color: var(--apple-text-main); /* Mantém a cor do texto no hover */
}
.btn-apple-icon {
     background: transparent; color: var(--apple-text-main);
     border: 1px solid rgba(128,128,128,0.3);
     border-radius: 50%; width: 50px; height: 50px;
     display: flex; align-items: center; justify-content: center;
     font-size: 1.2rem; transition: all 0.2s;
}
.btn-apple-icon:hover {
     background: var(--apple-text-main); color: var(--apple-card-bg);
}

/* CORREÇÃO DO CARROSSEL NO DARK MODE */
.carousel-indicators [data-bs-target] {
    background-color: #1D1D1F; /* Cor escura (quase preto) */
    width: 30px;
    height: 4px;
    border-radius: 4px;
    border: none;
    opacity: 0.3; /* Inativos ficam clarinhos */
    transition: all 0.3s ease;
    margin: 0 4px;
}

/* Ativo no Modo Claro */
.carousel-indicators .active {
    background-color: #1D1D1F;
    opacity: 1; /* Ativo fica totalmente escuro */
}

/* --- FORÇAR MODO ESCURO --- */

/* Quando o site estiver em Dark Mode, força as barras a serem BRANCAS */
[data-bs-theme="dark"] .carousel-indicators [data-bs-target] {
    background-color: #FFFFFF !important; /* Força Branco Puro */
    opacity: 0.4; /* Aumentei um pouco a visibilidade dos inativos */
    filter: none !important; /* Remove filtros do Bootstrap que tentam inverter a cor */
}

[data-bs-theme="dark"] .carousel-indicators .active {
    background-color: #FFFFFF !important; /* Força Branco Puro */
    opacity: 1; /* Totalmente visível */
}

/* Força a cor dos ícones de seta para serem visíveis sempre */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1) grayscale(100); /* Inverte para preto se o fundo for claro */
}
[data-bs-theme="dark"] .carousel-control-prev-icon,
[data-bs-theme="dark"] .carousel-control-next-icon {
    filter: invert(0) grayscale(100) brightness(200%); /* Garante branco no dark */
}

/* =================================================================== */
/* 5. BENTO GRID (CORRIGIDO ALINHAMENTO E LAYOUT)                      */
/* =================================================================== */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
        /* Altura fixa para manter o alinhamento perfeito */
        grid-auto-rows: 280px; 
    }
    
    /* O Item Destaque ocupa 2 colunas e 2 linhas (Esquerda) */
    .bento-item-large {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    /* Os outros itens ocupam naturalmente 1x1 na coluna restante */
}

.bento-card {
    background: var(--apple-card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden; position: relative;
    height: 100%; width: 100%;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.03);
    display: flex; flex-direction: column; text-decoration: none;
}
.bento-card:hover {
    transform: translateY(-8px) scale(1.01); box-shadow: var(--shadow-float); z-index: 2;
}
.bento-img-wrapper {
    width: 100%; height: 100%; position: absolute; top: 0; left: 0; z-index: 0;
}
.bento-img-wrapper img {
    width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease;
}
.bento-card:hover .bento-img-wrapper img { transform: scale(1.05); }
.bento-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%); z-index: 1;
}
.bento-content {
    position: relative; z-index: 2; margin-top: auto; padding: 2rem; color: white;
}
.bento-tag {
    background: rgba(255,255,255,0.2); backdrop-filter: blur(5px);
    padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 600;
    text-transform: uppercase; display: inline-block; margin-bottom: 0.5rem;
}
.bento-title { font-size: 1.5rem; margin-bottom: 0.5rem; color: white; }
.bento-desc { font-size: 0.95rem; opacity: 0.9; line-height: 1.4; color: rgba(255,255,255,0.9); }

/* =================================================================== */
/* 6. LISTA DE BLOG (MODERNA E COM ASSUNTO)                            */
/* =================================================================== */
.modern-list-group {
    display: flex; flex-direction: column; gap: 0;
    background: var(--apple-card-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.modern-list-item {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(128, 128, 128, 0.1);
    display: flex; align-items: center;
    transition: background-color 0.2s;
    color: var(--apple-text-main);
    text-decoration: none;
}
.modern-list-item:last-child { border-bottom: none; }
.modern-list-item:hover {
    background-color: rgba(128, 128, 128, 0.05);
    color: var(--apple-text-main);
}

.section-label {
    text-transform: uppercase; font-size: 0.85rem; font-weight: 700;
    letter-spacing: 0.1em; color: var(--ubuntu-orange); margin-bottom: 0.5rem; display: block;
}
.section-headline { font-size: 2.5rem; color: var(--apple-text-main); margin-bottom: 3rem; }
.content-section { padding: 5rem 0; }
.bg-light-subtle { background-color: rgba(128, 128, 128, 0.03) !important; }

/* =================================================================== */
/* 7. EXPERTISE & PRODUTOS                                             */
/* =================================================================== */
.expertise-card .icon-box {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    
    /* Cores para o Tema Claro (Baseado na imagem 2) */
    background: rgba(255, 255, 255, 0.8);
    color: #1d1d1f; /* Cor do texto Apple */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Ajuste específico para quando o Tema Escuro estiver ativo */
[data-bs-theme="dark"] .expertise-card .icon-box {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Efeito de destaque no ícone (Sutil gradiente como na imagem 1) */
.expertise-card:hover .icon-box {
    transform: translateY(-3px);
    background: var(--ubuntu-orange, #E95420); /* Usa a cor do seu projeto */
    color: white !important;
}

.product-img-box {
    height: 180px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.product-img-box img { max-height: 100%; max-width: 100%; object-fit: contain; }
.product-price { color: var(--ubuntu-orange); font-weight: 700; font-size: 1.2rem; display: block; margin-bottom: 1rem;}
.btn-buy {
    background-color: var(--apple-gray-bg); color: var(--ubuntu-orange);
    border-radius: 20px; font-weight: 600; width: 100%; border: none; padding: 0.5rem;
    transition: all 0.2s;
}
.btn-buy:hover { background-color: var(--ubuntu-orange); color: white; }

/* =================================================================== */
/* 8. FOOTER                                                           */
/* =================================================================== */
.footer-simple {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    border-top: 1px solid rgba(128, 128, 128, 0.1);
}

.footer-link {
    color: var(--apple-text-sec);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}
.footer-link:hover {
    color: var(--ubuntu-orange);
}

.footer-stats span {
    color: var(--apple-text-main);
    font-weight: 600;
    font-size: 0.95rem;
}

.social-icons-footer a {
    color: var(--apple-text-sec);
    transition: all 0.2s;
}
.social-icons-footer a:hover {
    color: var(--ubuntu-orange);
    transform: translateY(-3px);
}
.copyright-text { color: var(--apple-text-sec); font-size: 0.85rem; }

/* Responsividade */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .bento-item-large { grid-column: span 1; grid-row: span 1; min-height: 250px; }
}


/* =================================================================== */
/* 9. OFERTOU - PRODUTOS APPLE STYLE (CORRIGIDO TAMANHO FIXO)          */
/* =================================================================== */

/* 1. Ajuste no Swiper para garantir altura igual */
.swiper-slide {
    height: auto !important; /* Permite que o slide estique */
    display: flex;           /* Necessário para o filho preencher a altura */
}

/* 2. O Card agora ocupa 100% e organiza o conteúdo verticalmente */
.product-card-apple {
    background: var(--apple-card-bg);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    
    width: 100%;             /* Preenche a largura */
    height: 100%;            /* Preenche a altura do slide (que será igual ao maior) */
    
    display: flex;           /* Flexbox ativado */
    flex-direction: column;  /* Organiza um item abaixo do outro */
    justify-content: space-between; /* Empurra o conteúdo para as extremidades */
    
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.product-card-apple:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(233, 84, 32, 0.2);
    transform: translateY(-5px);
}

.product-img-box {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    flex-shrink: 0; /* Impede que a imagem encolha */
}

.product-img-box img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* Container para Texto e Preço (para controle fino) */
.product-info-wrapper {
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Faz esta parte ocupar o espaço sobrando */
}

/* 3. Padronização do Título (IMPORTANTE) */
.product-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--apple-text-main);
    
    /* Limita a 3 linhas e coloca ... se passar */
    display: -webkit-box;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    
    /* Altura Mínima Fixa: Garante que títulos curtos ocupem o mesmo espaço */
    height: 4.5em; /* Ajuste conforme necessário (aprox 3 linhas) */
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ubuntu-orange);
    display: block;
    margin-top: auto; /* Empurra o preço para baixo do wrapper de texto */
    margin-bottom: 1rem;
}

.btn-buy {
    background-color: var(--apple-gray-bg);
    color: var(--ubuntu-orange);
    border-radius: 20px;
    font-weight: 600;
    width: 100%;
    border: none;
    padding: 0.5rem;
    transition: all 0.2s;
    margin-top: auto; /* Garante que o botão fique sempre no final do card */
}

.btn-buy:hover {
    background-color: var(--ubuntu-orange);
    color: white;
}



/* =================================================================== */
/* ANIMAÇÃO DE EMPILHAMENTO (STACKING) DOS PROJETOS                    */
/* =================================================================== */

/* Estado inicial: Invisível, levemente menor e deslocado para baixo */
.stack-card {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Curva suave "Apple" */
    will-change: transform, opacity;
}

/* Estado final: Visível e na posição original */
.stack-card.stack-active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Atrasos para criar a sequência de "empilhamento" */
.delay-0 { transition-delay: 0ms; }
.delay-1 { transition-delay: 200ms; } /* O segundo card entra depois */
.delay-2 { transition-delay: 400ms; } /* O botão entra por último */


/* =================================================================== */
/* SEÇÃO DE ARTIGOS - APPLE EDITORIAL STYLE                            */
/* =================================================================== */

/* Tipografia e Container Principal */
.apple-journal-list {
    font-family: 'Inter', -apple-system, sans-serif;
}

/* Título Principal da Seção (Reduzido para Elegância) */
.news-title-main {
    font-size: 2.1rem; 
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--apple-text-main);
    margin-top: 5px;
}

/* Item da Lista - Layout e Transição */
.news-item {
    display: block;
    padding: 1.5rem 0;
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    background: transparent;
}

[data-bs-theme="dark"] .news-item {
    border-bottom-color: rgba(255,255,255,0.08);
}

.news-item:hover {
    padding-left: 15px;
    background: rgba(0, 0, 0, 0.015);
}

/* Categorias em Laranja Ubuntu */
.news-category {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #E95420; 
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block;
}

/* Título do Artigo (Reduzido conforme solicitado) */
.news-title {
    font-size: 1.4rem; 
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--apple-text-main);
    margin-bottom: 0;
}

/* Descrição com revelação suave */
.news-excerpt {
    font-size: 0.95rem;
    color: #86868b;
    line-height: 1.5;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

.news-item:hover .news-excerpt {
    max-height: 100px;
    opacity: 1;
    margin-top: 12px;
}

/* =================================================================== */
/* MONITOR iMAC - DISPLAY SUSPENSO (SEM BASE PARA ALINHAMENTO)         */
/* =================================================================== */

.imac-float-container {
    width: 100%;
    max-width: 500px;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.12));
    margin-left: auto; /* Garante que o monitor encoste na direita do col-lg-6 */
}

.imac-device {
    background: #f5f5f7; /* Silver Apple */
    border-radius: 32px;
    padding: 12px 12px 25px 12px;
    border: 1px solid rgba(255,255,255,0.8);
    position: relative;
}

.imac-screen-wrapper {
    position: relative;
    aspect-ratio: 16/10; /* Proporção real do Display Apple */
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid #2c2c2e;
}

/* Efeito de Vidro Realista */
.imac-glass-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 60%);
    pointer-events: none;
    z-index: 5;
}

.imac-screen-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

/* Sensor inferior (substitui a necessidade visual da base) */
.display-sensor-dot {
    width: 7px;
    height: 7px;
    background: #d2d2d7;
    border-radius: 50%;
    margin: 15px auto 0;
    opacity: 0.6;
}


/* --- MONITOR IMAC SILVER (O DESENHO) --- */

.imac-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 520px;
    margin-left: auto; /* Alinha o monitor à direita da coluna */
}

.imac-device {
    background: #f5f5f7; /* Prata Apple */
    border-radius: 32px;
    padding: 12px 12px 45px 12px; /* Espaço maior embaixo para o "queixo" */
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    border: 1px solid rgba(255,255,255,0.8);
    width: 100%;
    position: relative;
    transition: transform 0.4s ease;
}

/* Moldura da Tela */
.imac-screen-wrapper {
    position: relative;
    aspect-ratio: 16/10;
    background: #000;
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid #2c2c2e;
}

/* Vidro Realista */
.imac-glass-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 60%);
    pointer-events: none;
    z-index: 5;
}

.imac-screen-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sensor no Queixo do Monitor */
.imac-sensor {
    width: 8px;
    height: 8px;
    background: #d2d2d7;
    border-radius: 50%;
    margin: 18px auto 0;
    opacity: 0.6;
}

/* Tipografia e Lista (Ajustes de Suavidade) */
.news-title-main {
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--apple-text-main);
}

.news-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--apple-text-main);
}

.news-excerpt {
    font-size: 0.95rem;
    color: #86868b;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.news-item:hover .news-excerpt {
    max-height: 80px;
    opacity: 1;
    margin-top: 10px;
}


/* --- O DESENHO DO MONITOR (CORPO SILVER) --- */
.imac-device-display {
    background: #f5f5f7; /* Prata Apple */
    border-radius: 32px;
    padding: 12px 12px 45px 12px; /* O padding maior embaixo cria o "queixo" do iMac */
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    position: relative;
    width: 100%;
}

/* --- A TELA (MOLDURA PRETA) --- */
.imac-screen-wrapper {
    position: relative;
    aspect-ratio: 16 / 10;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #2c2c2e; /* Moldura interna */
}

/* --- O SENSOR (BOLA NO CENTRO DO QUEIXO) --- */
.display-sensor-dot {
    width: 8px;
    height: 8px;
    background: #d2d2d7;
    border-radius: 50%;
    margin: 18px auto 0; /* Centraliza o sensor no queixo prateado */
    opacity: 0.6;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.1);
}

/* --- REFLEXO DE VIDRO REALISTA --- */
.imac-glass-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 60%);
    z-index: 5;
    pointer-events: none;
}