/* =========================================
   EMAIL MARKETING - ESTILOS ESPECÍFICOS
   Focus: Mockup de correo, Conversión
   ========================================= */

.email-mockup {
    background: #FFFFFF; /* Blanco Puro */
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    overflow: hidden;
    max-width: 450px;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.email-mockup:hover {
    transform: translateY(-5px);
}

.email-header {
    background: #f8fafc; /* Gris muy suave solo para el header del mail */
    padding: 15px 20px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sender-avatar {
    width: 32px; height: 32px;
    background: var(--brand-red); /* Naranja Corporativo */
    color: white;
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-weight: bold; 
    font-size: 0.85rem;
    font-family: var(--font-heading);
}

.email-body { 
    padding: 30px; 
    font-family: var(--font-body);
}

.email-cta-btn {
    background: var(--brand-yellow); /* Botón Índigo dentro del mail */
    color: white !important;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.email-cta-btn:hover {
    opacity: 0.9;
}