/* =========================================
   BRANDING - ESTILOS ESPECÍFICOS
   Focus: Paletas de color, Identidad visual
   ========================================= */

.palette-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columnas */
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
}

.color-swatch {
    height: 120px;
    border-radius: 16px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Efecto rebote */
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.color-swatch:hover {
    transform: scale(1.1); 
    z-index: 2;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Colores de la marca */
.swatch-1 { background: var(--brand-red); }       /* Naranja */
.swatch-2 { background: var(--brand-yellow); }    /* Índigo */
.swatch-3 { background: #1F1F1F; }                /* Negro Texto */
.swatch-4 { background: #F3F4F6; }                /* Gris Neutro */

/* Etiqueta HEX del color */
.swatch-label {
    position: absolute;
    bottom: 12px; 
    left: 12px;
    background: rgba(255,255,255,0.95);
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-family: var(--font-mono);
    font-weight: 800;
    color: #111;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}