/* =========================================
   DESARROLLO WEB - ESTILOS ESPECÍFICOS
   Fondo: Blanco Puro (#FFFFFF)
   ========================================= */

/* --- HERO SPECIFIC --- */
.web-hero-mockup {
    box-shadow: 0 20px 80px rgba(104, 101, 241, 0.15);
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.08); /* Borde un poco más visible al ser fondo blanco */
    background: #FFFFFF; /* BLANCO PURO */
    overflow: hidden;
    transition: transform 0.5s ease;
}
.web-hero-mockup:hover {
    transform: translateY(-10px);
}

/* --- LIGHTHOUSE SCORE CARD --- */
.score-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 6px solid #0CCE6B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2rem;
    color: #0CCE6B;
    background: #FFFFFF; /* BLANCO PURO (Antes tenía tinte verde) */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Sombra suave para separar */
}
.score-label {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- PORTFOLIO GRID --- */
.portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.05);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(104, 101, 241, 0.95); /* Índigo tech sólido */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

/* --- TECH STACK --- */
.tech-icon {
    font-size: 2.5rem;
    color: #cbd5e1;
    transition: all 0.3s ease;
}
.tech-icon:hover {
    color: var(--brand-yellow);
    transform: scale(1.1);
}